PHP常用原生函数总结(不定期更新)
2021-04-22 22:29
标签:bar eth 字符 UNC 字符串 函数 code func pre 在后面有应用 如果在函数中 unset() 一个全局变量,则只是局部变量被销毁,而在调用环境中的变量将保持调用 unset() 之前一样的值。 如果想在函数中 unset() 一个全局变量,可使用 $GLOBALS 数组来实现 如果在函数中 unset() 一个静态变量,那么在函数内部此静态变量将被销毁。但是,当再次调用此函数时,此静态变量将被复原为上次被销毁之前的值。 比如下面这个例子: 输出的结果为: 例如: 输出结果如下: 该函数把a字符串按照空格分割成了四个字符串 例如: 输出结果如下: PHP常用原生函数总结(不定期更新) 标签:bar eth 字符 UNC 字符串 函数 code func pre 原文地址:https://www.cnblogs.com/Fizzmy/p/12240803.html1.var_dump() 用于输出变量的相关信息
2.unset() 用于销毁给定的变量
function foo()
{
unset($GLOBALS['bar']);
}
$bar = "something";
foo();
function foo()
{
static $bar;
$bar++;
echo "Before unset: $bar, ";
unset($bar);
$bar = 23;
echo "after unset: $bar\n";
}
foo();
foo();
foo();
Before unset: 1, after unset: 23
Before unset: 2, after unset: 23
Before unset: 3, after unset: 23
3.explode() 字符串转换为数组
$a="I come from Qingdao";
var_dump(explode(" ",$a));
array(4) { [0]=> string(1) "I" [1]=> string(4) "come" [2]=> string(4) "from" [3]=> string(7) "Qingdao" }
4.implode() 数组转换为字符串
$a=array('I','come','from','Qingdao');
var_dump(implode(" ",$a));
string(19) "I come from Qingdao"
下一篇:CSS
文章标题:PHP常用原生函数总结(不定期更新)
文章链接:http://soscw.com/index.php/essay/78278.html