function split() deprecated and explode …Undefined offset: 1 E_NOTICE Error in file
I received this error: function split() deprecated
list ($kk, $vv) = split( ' ', $buf, 2);
When I replaced it with explode
or preg_split
I got this error Undefined offset: 1 E_NOTICE Error in file
list ($kk, $vv) = explode( " ", $buf, 2);
This is the full code
function get_toprotatingbanners()
{
$s = array ();
$file = fopen ('inc/adsadmin/toprotatingbanners.php', 'r');
if ($file)
{
while ($buf = fgets ($file, 20000))
{
$buf = chop ($buf);
if (($buf != '<?/*' AND $buf != '*/?>'))
{
list ($kk, $vv) = explode(" ", $buf, 2);
$s[$kk] = $vv;
continue;
}
}
}
fclose ($file);
return $s;
}
Please help me.
php split undefined offset deprecated
add a comment |
I received this error: function split() deprecated
list ($kk, $vv) = split( ' ', $buf, 2);
When I replaced it with explode
or preg_split
I got this error Undefined offset: 1 E_NOTICE Error in file
list ($kk, $vv) = explode( " ", $buf, 2);
This is the full code
function get_toprotatingbanners()
{
$s = array ();
$file = fopen ('inc/adsadmin/toprotatingbanners.php', 'r');
if ($file)
{
while ($buf = fgets ($file, 20000))
{
$buf = chop ($buf);
if (($buf != '<?/*' AND $buf != '*/?>'))
{
list ($kk, $vv) = explode(" ", $buf, 2);
$s[$kk] = $vv;
continue;
}
}
}
fclose ($file);
return $s;
}
Please help me.
php split undefined offset deprecated
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16
add a comment |
I received this error: function split() deprecated
list ($kk, $vv) = split( ' ', $buf, 2);
When I replaced it with explode
or preg_split
I got this error Undefined offset: 1 E_NOTICE Error in file
list ($kk, $vv) = explode( " ", $buf, 2);
This is the full code
function get_toprotatingbanners()
{
$s = array ();
$file = fopen ('inc/adsadmin/toprotatingbanners.php', 'r');
if ($file)
{
while ($buf = fgets ($file, 20000))
{
$buf = chop ($buf);
if (($buf != '<?/*' AND $buf != '*/?>'))
{
list ($kk, $vv) = explode(" ", $buf, 2);
$s[$kk] = $vv;
continue;
}
}
}
fclose ($file);
return $s;
}
Please help me.
php split undefined offset deprecated
I received this error: function split() deprecated
list ($kk, $vv) = split( ' ', $buf, 2);
When I replaced it with explode
or preg_split
I got this error Undefined offset: 1 E_NOTICE Error in file
list ($kk, $vv) = explode( " ", $buf, 2);
This is the full code
function get_toprotatingbanners()
{
$s = array ();
$file = fopen ('inc/adsadmin/toprotatingbanners.php', 'r');
if ($file)
{
while ($buf = fgets ($file, 20000))
{
$buf = chop ($buf);
if (($buf != '<?/*' AND $buf != '*/?>'))
{
list ($kk, $vv) = explode(" ", $buf, 2);
$s[$kk] = $vv;
continue;
}
}
}
fclose ($file);
return $s;
}
Please help me.
php split undefined offset deprecated
php split undefined offset deprecated
edited Apr 2 '16 at 8:00
user2807083
2,08242031
2,08242031
asked Apr 2 '16 at 7:26
selemo selemo
11113
11113
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16
add a comment |
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16
add a comment |
1 Answer
1
active
oldest
votes
Function split is deprecated "This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0." as you can see on php.net/manual/en/function.split.php
Undefined offset: 1 is because $buf is undeffined.
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
@selemo, to define$buf
add a statement at the start such as$buf = "";
. Now it is defined.
– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f36370456%2ffunction-split-deprecated-and-explode-undefined-offset-1-e-notice-error-i%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Function split is deprecated "This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0." as you can see on php.net/manual/en/function.split.php
Undefined offset: 1 is because $buf is undeffined.
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
@selemo, to define$buf
add a statement at the start such as$buf = "";
. Now it is defined.
– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
add a comment |
Function split is deprecated "This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0." as you can see on php.net/manual/en/function.split.php
Undefined offset: 1 is because $buf is undeffined.
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
@selemo, to define$buf
add a statement at the start such as$buf = "";
. Now it is defined.
– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
add a comment |
Function split is deprecated "This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0." as you can see on php.net/manual/en/function.split.php
Undefined offset: 1 is because $buf is undeffined.
Function split is deprecated "This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0." as you can see on php.net/manual/en/function.split.php
Undefined offset: 1 is because $buf is undeffined.
edited Nov 24 '18 at 3:29
Funk Forty Niner
1
1
answered Apr 2 '16 at 7:44
alexeevycialexeevyci
1221111
1221111
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
@selemo, to define$buf
add a statement at the start such as$buf = "";
. Now it is defined.
– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
add a comment |
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
@selemo, to define$buf
add a statement at the start such as$buf = "";
. Now it is defined.
– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
how can i make $buff deffined. what are those thing i have to add. please help me
– selemo
Apr 2 '16 at 10:06
1
1
@selemo, to define
$buf
add a statement at the start such as $buf = "";
. Now it is defined.– Alexis Wilke
Mar 13 '17 at 3:42
@selemo, to define
$buf
add a statement at the start such as $buf = "";
. Now it is defined.– Alexis Wilke
Mar 13 '17 at 3:42
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
Please be careful when referencing external links. The English version must be used in this area of Stack Overflow. I edited it.
– Funk Forty Niner
Nov 24 '18 at 3:30
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f36370456%2ffunction-split-deprecated-and-explode-undefined-offset-1-e-notice-error-i%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
please need you guys precious help
– selemo
Apr 2 '16 at 7:28
@alexeevyci how am i going to make $buff deffined. if that is the problem, write the code for me. please
– selemo
Apr 2 '16 at 10:16