上传文件时得不到$upFile_name的值时候
HTML里
<input type="file" name="upFile" size="54" >
PHP里
";exit;
$upFile_name = $_FILES['upFile']['name'];
$upFile_size = $_FILES['upFile']['size'];
Warning: A non-numeric value encountered
$year_tit=date('Y',(time()+intval($flag)*86400));
mysqli_insert_id() 不能用时
$schedule_no=$this->dbObj->linker->insert_id;
不能用split时
$list=preg_split('~/~',$php_SELF_); php7
不能用eregi时
if(preg_match('~android~',$user_agent))
$result = true;
获取所有数据表
$result_this = mysqli_query(数据库连接对象,"SHOW TABLES FROM $数据库名");
获取一个表的所有字段,并且干入array
$tot_column = array();
$con = mysqli_connect($this->hostName, $this->usrName, $this->passWd,$this->dbName) or die("Can not connect to a MySQL Server");
$sql = "SELECT * FROM $this->memoTable";
if ($res=mysqli_query($con,$sql)) {
$code_field=mysqli_fetch_fields($res);
foreach ($code_field as $val) {
array_push($tot_column, $val->name);
}
}
mysqli_close($con);
不能使用mysql_result时
$row = self::mysql_result_new($res, $row, $field);
function mysql_result_new($result, $number, $field=0) {
mysqli_data_seek($result, $number);
$row = mysqli_fetch_array($result);
return $row[$field] ?? '';
}
Warning: Illegal string offset ‘id’ 。。。错误
if ($board_member->detail_user_auth($member_info['id'], $rowMng['auth_seq'])){
$member_info_id = '';
if (is_array($member_info)) {
$member_info_id = $member_info['id'];
}
if ($board_member->detail_user_auth($member_info_id, $rowMng['auth_seq'])){
方法调用call_user_method()不能用时
$info = call_user_method("方法名", 对象);
$info = call_user_func(array(对象,"方法名"),参数...);
ereg_replace 改为preg_replace 后因为" "而出现问题时
方法1:
if (Trim($search) !== '') {
$newstring = preg_replace($search,$replace,$newstring);
}
方法2:
$str = str_replace(chr(194) . chr(160), "a", $str);
$str = preg_replace('/\xC2\xA0/is', "a", $str);
Delimiter must not be alphanumeric or backslash 问题及解决
正则表达式没有加左右侧的斜线
URL中的参数获取
$action = $_REQUEST['action'];
使用count()时
for ($i = 0; $i < count((array)$tmp_auth); $i++) { php7 得加(array)强制转换
如果直接使用$DOCUMENT_ROOT话不行
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
如果直接使用$SCRIPT_NAME话不行
$SCRIPT_NAME = $_SERVER['SCRIPT_NAME'];
方法参数不能使用&时
$host_name41 = &$info['host_name'];
$user_id41 = &$info['user_id'];
$user_pw41 = &$info['user_pw'];
$db_name41 = &$info['db_name'];
$auth = new Auth($host_name41,$user_id41,$user_pw41,$db_name41);
Invalid argument supplied for foreach() in 。。。
foreach($data as $value){
}
if(is_array($data)){foreach($data as $value){...}}
常量是否定义
if (!defined('__asdasd__')) {
define('__asdasd__', '__asdasd__');
}
Declaration of xxxxxx should be compatible with yyyyyy
上图所示的意思是:在PHP 大于5.4的版本中,使用了 PHP的严格模式 检查程序,检测结果为 Index模块中的 clearcache()方法 必须兼容 父类Mytpl类中 定义的clearcache()方法,即 子类覆写父类的方法时 必须一致,包括 参数个数一致、参数如果没有值 则需要定义其默认值!
————————————————
版权声明:本文为CSDN博主「日月天方csdn」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/u010244099/article/details/78139528