PHP函数备忘

函数 php版本 描述 定义
mysql_real_escape_string (PHP 4 >= 4.3.0, PHP 5) 转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集 string mysql_real_escape_string ( string $unescaped_string [, resource $link_identifier ] )
addslashes (PHP 4, PHP 5) 使用反斜线引用字符串 string addslashes ( string $str )
register_shutdown_function (PHP 4, PHP 5) Register a function for execution on shutdown void register_shutdown_function ( callable $callback [, mixed $parameter [, mixed $… ]] )
exit (PHP 4, PHP 5) 输出一个消息并且退出当前脚本 void exit ([ string $status ] ) void exit ( int $status )
die (PHP 4, PHP 5) 等同于 exit()
func_get_args (PHP 4, PHP 5) Returns an array comprising a function’s argument list array func_get_args ( void )
mysql_query (PHP 4, PHP 5) 发送一条 MySQL 查询 resource mysql_query ( string $query [, resource $link_identifier = NULL ] )
mysql_num_fields (PHP 4, PHP 5) 取得结果集中字段的数目 int mysql_num_fields ( resource $result )
mysql_fetch_object (PHP 4, PHP 5) 从结果集中取得一行作为对象 object mysql_fetch_object ( resource $result )
get_object_vars (PHP 4, PHP 5) 返回由对象属性组成的关联数组 array get_object_vars ( object $obj )
array_values (PHP 4, PHP 5) 返回数组中所有的值 array array_values ( array $input )

发表评论