为什么老师的$GLOBALS显示出来的全局变量这么少,而我的$GLOBALS会显示很多全局变量,里面甚至有很多关键信息,别人是否可以通过Mysql注入$GLOBALS代码窃取我的信息?
2018-03-02
function doc_name($docname){
$doc = explode('.',$docname);
return strtolower($doc[(count($doc)-1)]);
}
echo doc_name('1..BA.txt'); 完善一下
$doc = explode('.',$docname);
return strtolower($doc[(count($doc)-1)]);
}
echo doc_name('1..BA.txt'); 完善一下
2018-02-01
function doc_name($docname){
$doc = explode('.',$docname);
return $doc[1];
}
echo doc_name('1.txt'); 这样也可以把
$doc = explode('.',$docname);
return $doc[1];
}
echo doc_name('1.txt'); 这样也可以把
2018-02-01
“最经常用作回调函数(callback)参数的值 ”这句话,老师讲的可不明白呀。伙伴们再读一下题意。老师的例子中是把匿名函数作为回调函数来用的。而不是回调函数参数的值。有没有伙伴可以贡献一下正解。
2018-01-29
case 3:
for ($i=1;$i<=$length;$i++){
if($i==rand(1,$length)||$i%2==0){
echo chr(rand(97,122)).'-';
}else
echo rand(0,9).'-';
}
break;
}
}
for ($i=1;$i<=$length;$i++){
if($i==rand(1,$length)||$i%2==0){
echo chr(rand(97,122)).'-';
}else
echo rand(0,9).'-';
}
break;
}
}
2018-01-28
function randTest($type,$length=4){
switch ($type){
case 1:
for($i=1;$i<=$length;$i++){
echo rand(0,9).'-';
}break;
case 2:
for($i=1;$i<=$length;$i++){
echo chr(rand(97,122)).'-';
}break;
switch ($type){
case 1:
for($i=1;$i<=$length;$i++){
echo rand(0,9).'-';
}break;
case 2:
for($i=1;$i<=$length;$i++){
echo chr(rand(97,122)).'-';
}break;
2018-01-28
function createFile($filename){
$file = $filename;
$a = substr(strrchr($file, '.'), 1);
return $a;
}
echo createFile('1.html');
$file = $filename;
$a = substr(strrchr($file, '.'), 1);
return $a;
}
echo createFile('1.html');
2018-01-25
function get_extension($file)
{
return pathinfo($file, PATHINFO_EXTENSION);//返回文件扩展名函数
}
{
return pathinfo($file, PATHINFO_EXTENSION);//返回文件扩展名函数
}
2018-01-17
// 查找文件名,输出后缀名
function extend_end($filename){
echo substr($filename, strripos($filename, '.'));
}
extend_end('hell000o .world.html');
function extend_end($filename){
echo substr($filename, strripos($filename, '.'));
}
extend_end('hell000o .world.html');
2017-12-23