PHP Chinese Manual 2,
<code><code> 11. Exception handling <code><code>Users can extend PHP’s built-in exception handling classes with custom exception handling classes. The following code illustrates which properties and methods in the built-in exception handling class are accessible and inheritable in subclasses. Translator's Note: The following code is only to illustrate the structure of the built-in exception handling class. It is not a usable code with practical significance.
<code>class Exception{protected $message = 'Unknown exception'; //Exception information
protected $code = 0; //User-defined exception code
protected $file; //The file name where the exception occurred
protected $line; //The code line number where the exception occurred
function __construct($message = null, $code = 0);
final function getMessage(); // Return exception information
final function getCode(); // Return exception code
final function getFile(); // Return the file name where the exception occurred
final function getLine(); // Returns the code line number where the exception occurred
final function getTrace(); // backtrace() array
final function getTraceAsString(); // getTrace formatted into a string () Information
/* Overloadable method*/
function __toString(); // Outputable string
}
?><code>class Exception{
protected $message = 'Unknown exception'; // 异常信息
protected $code = 0; // 用户自定义异常代码
protected $file; // 发生异常的文件名
protected $line; // 发生异常的代码行号
function __construct($message = null, $code = 0);
final function getMessage(); // 返回异常信息
final function getCode(); // 返回异常代码
final function getFile(); // 返回发生异常的文件名
final function getLine(); // 返回发生异常的代码行号
final function getTrace(); // backtrace() 数组
final function getTraceAsString(); // 已格成化成字符串的 getTrace() 信息
/* 可重载的方法 */
function __toString(); // 可输出的字符串
}
?>
If you use a custom class to extend the built-in exception handling class and redefine the constructor, it is recommended to call parent::__construct() at the same time to check whether all variables have been assigned values. When the object wants to output a string, you can overload __toString() and customize the output style.
Extend PHP’s built-in exception handling class
<code><?php <br />// 自定义一个异常处理类<br>class MyException extends Exception{ // 重定义构造器使 message 变为必须被指定的属性<br> public function __construct($message, $code = 0) {<br> // 自定义的代码 // 确保所有变量都被正确赋值<br> parent::__construct($message, $code);<br>}<br>// 自定义字符串输出的样式<br>public function __toString() {<br> return __CLASS__ . ": [{$this->code}]: {$this->message}n";<br>}<br>public function customFunction() {<br> echo "A Custom function for this type of exceptionn";<br> }<br>}<br><span>//</span>创建一个用于测试异常处理机制的类<br>class TestException{<br>public $var;<br>const THROW_NONE = 0;<br>const THROW_CUSTOM = 1;<br>const THROW_DEFAULT = 2;<br>function __construct($avalue = self::THROW_NONE) {<br>switch ($avalue) {<br>case self::THROW_CUSTOM:<br>// 抛出自定义异常<br>throw new MyException('1 is an invalid parameter', 5);<br>break;<br>case self::THROW_DEFAULT:<br>// 抛出默认的异常<br>throw new Exception('2 isnt allowed as a parameter', 6);<br>break;<br>default:<br>// 没有异常的情况下,创建一个对象<br>$this->var = $avalue;<br>break;<br>}<br>}<br>}<br>// 例子 1<br>try {<br>$o = new TestException(TestException::THROW_CUSTOM);<br>} catch (MyException $e) { // 捕获异常<br>echo "Caught my exceptionn", $e;<br>$e->customFunction();<br>} catch (Exception $e) { // 被忽略<br>echo "Caught Default Exceptionn", $e;<br>}<br>// 执行后续代码<br>var_dump($o);<br>echo "nn";<br>// 例子 2<br>try {<br>$o = new TestException(TestException::THROW_DEFAULT);<br>} catch (MyException $e) { // 不能匹配异常的种类,被忽略<br>echo "Caught my exceptionn", $e;<br>$e->customFunction();<br>} catch (Exception $e) { // 捕获异常<br>echo "Caught Default Exceptionn", $e;<br>}<br>// 执行后续代码<br>var_dump($o);<br>echo "nn";<br>// 例子 3<br>try {<br>$o = new TestException(TestException::THROW_CUSTOM);<br>} catch (Exception $e) { // 捕获异常<br>echo "Default Exception caughtn", $e;<br>}<br>// 执行后续代码<br>var_dump($o);<br>echo "nn";<br>// 例子 4<br>try {<br>$o = new TestException();<br>} catch (Exception $e) { // 没有异常,被忽略<br>echo "Default Exception caughtn", $e;<br>}<br>// 执行后续代码<br>var_dump($o);<br>echo "nn";<br>?> 12. Generator <code><code>Generators allow you to write code in a foreach block to iterate over a set of data without creating an array in memory, which would hit your memory limit or take up considerable processing time. Instead, you can write a generator function, just like a normal custom function, and instead of a normal function returning only once, the generator can yield as many times as needed in order to generate values that need to be iterated over.
<code><?php <br />function xrange($start, $limit, $step = 1) {<br> if ($start if ($step throw new LogicException('Step must be ve');<br>}<br> for ($i = $start; $i yield $i;<br> }<br> } else {<br> if ($step >= 0) {<br> throw new LogicException('Step must be -ve');<br> }<br> for ($i = $start; $i >= $limit; $i = $step) {<br> yield $i;<br> }<br> }<br>}<br>/* Note that both range() and xrange() result in the same<br>* output below. */<br>echo 'Single digit odd numbers from range(): ';<br>foreach (range(1, 9, 2) as $number) {<br> echo "$number ";<br>}<br>echo "n";<br>echo 'Single digit odd numbers from xrange(): ';<br>foreach (xrange(1, 9, 2) as $number) {<br> echo "$number ";<br>}<br>?>Single digit odd numbers from range(): 1 3 5 7 9 Single digit odd numbers from xrange(): 1 3 5 7 9
Comparing generators with Iterator objects
The primary advantage of generators is their simplicity. Much less boilerplate code has to be written compared to implementing anIterator class, and the code is generally much more readable. For example, the following function and class are equivalent:
<code><?php <br />function getLinesFromFile($fileName) {<br> if (!$fileHandle = fopen($fileName, 'r')) {<br> return;<br>}<br>while (false !== $line = fgets($fileHandle)) {<br> yield $line;<br>}<br>fclose($fileHandle);<br>}<br>// versus...<br>class LineIterator implements Iterator {<br> protected $fileHandle;<br> protected $line;<br> protected $i;<br> public function __construct($fileName) {<br> if (!$this->fileHandle = fopen($fileName, 'r')) {<br> throw new RuntimeException('Couldn't open file "' . $fileName . '"');<br> }<br> }<br> public function rewind() {<br> fseek($this->fileHandle, 0);<br> $this->line = fgets($this->fileHandle);<br> $this->i = 0;<br> }<br> public function valid() {<br> return false !== $this->line;<br> }<br> public function current() {<br> return $this->line;<br> }<br> public function key() {<br> return $this->i;<br> }<br> public function next() {<br> if (false !== $this->line) {<br> $this->line = fgets($this->fileHandle);<br> $this->i ;<br> }<br> }<br> public function __destruct() {<br> fclose($this->fileHandle);<br> }<br> }<br>?> 13. Quote <code><code> <code>$a =& $b; //This means <code>$a =& $b; //这意味着 $a 和 $b 指向了同一个变量。$a 和 $b 在这里是完全相同的,这并不是 $a 指向了 $b 或者· //相反,而是 $a 和 $b 指向了同一个地方。?><code>$a
and
$bpoints to the same variable.
$aand
$bare exactly the same here, which is not the case with
$apoints to
$bor· // Instead, it is
$aand
$b points to the same place.
?>
<code>
If an array with a reference is copied, its value will not be dereferenced. The same is true for passing array values to functions. If an undefined variable is assigned by reference, passed by reference, or returned by reference, the variable is automatically created.
function foo(&$var) { }
foo($a); // $a is "created" and assigned to null
$b = array();<code><span><?php <br />$bar =& new fooclass();<br>$foo =& find_var($bar);<br>?></span>foo($b['b']); var_dump(array_key_exists('b', $b)); // bool(true)
$c = new StdClass; foo($c->d); var_dump(property_exists($c, 'd')); // bool(true) ?> The same syntax can be used in functions, which return references, and in the new operator (PHP 4.0.4 and later): <code>$bar =& new fooclass();$foo =& find_var($bar);
?> If a reference is assigned to a variable declared as global inside a function, the reference is only visible inside the function. This can be avoided by using the $GLOBALS array. Reference global variables within a function: <code>$var1 = "Example variable";
$var2 = "";
function global_references($use_globals){
global $var1, $var2;
if (!$use_globals) {
$var2 =& $var1; // visible only inside the function
} else {
$GLOBALS["var2"] =& $var1; // visible also in global context
}
}
global_references(false);
echo "var2 is set to '$var2'n"; // var2 is set to ''
global_references(true);
echo "var2 is set to '$var2'n"; // var2 is set to 'Example variable'
?> Think of global $var; as the abbreviation of $var =& $GLOBALS['var']; . Thus assigning other references to $var only changes the reference of the local variable.
If a variable with a reference is assigned a value in a foreach statement, the referenced object is also changed.
$ref = 0;
$row =& $ref;
foreach (array(1, 2, 3) as $row) {// do something}
echo $ref; // 3 - last element of the iterated array
?>
The second thing a reference does is pass a variable by reference. This is accomplished by creating a local variable within the function and that variable references the same content in the calling scope. For example:
<code><code>function foo(&$var){$var ;
}
$a=5;
foo($a);
?>function foo(&$var){
$var ;
}
$a=5;
foo($ a);
?> will make $a become 6. This is because the variable $var in the foo function points to and $a points to the same content. See Passing by Reference for a more detailed explanation. The third thing a reference does is reference return. References are not pointers.
You can pass a variable by reference to a function so that the function can modify the value of its argument.
<code><span><?php <br />function foo(&$var){<br>$var ;<br>}<br>$a=5;<br>foo($a);// $a is 6 here<br>?></span> <code><span><?php <br />function foo(&$var){<br>$var ;<br>}<br>$a=5;<br>foo($ a);// $a is 6 here<br>?></span>Note that there are no reference symbols in function calls - only in function definitions. The function definition alone is enough for parameters to be passed correctly by reference
The following can be passed by reference:Variables, such as foo($a); New statements, such as foo(new foobar());
References returned from functionsAny other expression cannot be passed by reference, and the result is undefined. <code><span><?php <br />function bar(){ // Note the missing &<br>$a = 5;<br>return $a;<br>}<br>foo(bar()); // 自 PHP 5.0.5 起导致致命错误<br>foo($a = 5) // 表达式,不是变量<br>foo(5) // 导致致命错误<br>?></span>
<code><span><?php <br />function bar(){ // Note the missing &<br>$a = 5;<br>return $a;<br>}<br>foo(bar()); // Causes fatal error since PHP 5.0.5<br>foo($a = 5) // Expression, not variable<br>foo(5) // Causes fatal error <br>?><em></em></span> Reference return is used when you want to use a function to find which variable the reference should be bound to.
Don't use return references to increase performance, the engine is smart enough to optimize it itself. Only return references if there is a valid technical reason! To return a reference, use this syntax: <code><span><?php <br />class foo {<br> public $value = 42;<br> public function &getValue() {<br> return $this->value;<br> }<br>}<br>$obj = new foo;<br>$myValue = &$obj->getValue(); // $myValue is a reference to $obj->value, which is 42.<br>$obj->value = 2;<br>echo $myValue; // prints the new value of $obj->value, i.e. 2.<br>?></span> In this example, the properties of the object returned by the getValue function will be assigned values instead of copied, just like no reference syntax is used. Unlike parameter passing, the ampersand must be used in both places here - indicating that a reference is returned, not a usual copy, and also indicating that $myValue is bound as a reference, not a usual assignment. When you unset a reference, you just break the binding between the variable name and the variable's contents. This does not mean that the variable contents are destroyed. <code><code>$a = 1;$b =& $a;
unset($a);
?>$a = 1;
$b =& $a;
unset($a);
?> will not unset $b, just $a. Reference positioning: global reference: When declaring a variable with global $var a reference to the global variable is actually established. That is the same as doing this: <code><span><?php <br />$var =& $GLOBALS["var"]; //这意味着,例如,unset <var><var>$var</var></var> 不会 unset 全局变量。<br>?></span> <code><span><?php <br />$var =& $GLOBALS["var"]; //This means, for example, that unset <var><var>$var</var></var> does not Will unset global variables. <br>?></span>
$this: In a method of an object, $this is always a reference to the object that calls it.
14. Predefined variables
Superglobal variables — Superglobal variables are built-in variables that are always available in all scopes. Many predefined variables in PHP are "superglobal", which means that they are in all scopes of a script. Available in all. They can be accessed within a function or method without executingglobal $variable; . These superglobal variables are:
$GLOBALS;$_SERVER;$_GET;$_POST;$_FILES;$_COOKIE;$_SESSION;$_REQUEST;$_ENV
By default, all superglobal variables are available. However, there are some directives that affect this availability. <code><span><?php <br />function test() {<br>$foo = "local variable";<br>echo '$foo in global scope: ' . $GLOBALS["foo"] . "n";//$foo in global scope: Example content<br>echo '$foo in current scope: ' . $foo . "n";//$foo in current scope: local variable<br>}<br>$foo = "Example content";<br>test();<br>?></span>$GLOBALS — refers to all variables available in the global scope. A global combined array containing all variables. The name of the variable is the key of the array. <code><var><?php <br />function test() {<br>$foo = "local variable";<br>echo '$foo in global scope: ' . $GLOBALS["foo "] . "n";//$foo in global scope: Example content<br>echo '$foo in current scope: ' . $foo . "n";//$foo in current scope: local variable<br>}<br>$foo = "Example content";<br>test();<br>?></var> "Superglobal" is also called the global variable of automation. This means that it is available in all scopes of the script. There is no need to use
global $variable;in a function or method to access it. Unlike all other superglobal variables, $GLOBALS is always available in PHP.
$_SERVER
is an array containing information such as header, path, and script locations. The items in this array are represented by
Web server creation. You may or may not be able to find the following elements in $_SERVER. List:
'PHP_SELF': The file name of the currently executing script, related to the document root. For example, use in a script at http://example.com/test.php/foo.bar
$_SERVER['PHP_SELF'] will get /test.php/foo.bar.
'SERVER_ADDR': The IP address of the server where the script is currently running.
'SERVER_NAME': The host name of the server where the script is currently running. If the script is running on a virtual host, the name is determined by the value set for that virtual host.
'SERVER_PROTOCOL': The name and version of the communication protocol when requesting the page. For example, "HTTP/1.0".
'REQUEST_METHOD': The request method used to access the page; for example, "GET", "HEAD", "POST", "PUT". 'REQUEST_TIME': The timestamp when the request started. Available since PHP 5.1.0.'QUERY_STRING': query string (query string), if any, through which page access is performed.
'HTTP_HOST': The content of the Host: item in the current request header, if it exists.
'HTTP_REFERER': Directs the user agent to the address of the previous page of the current page (if one exists). Determined by user agent settings. Not all user agents will set this item, and some also provide the function of modifying HTTP_REFERER. In short, the value is not trustworthy.
'HTTP_USER_AGENT': The content of the User-Agent: item in the current request header, if it exists. This string indicates information about the user agent accessing this page.
'REMOTE_ADDR': The IP address of the user browsing the current page.
'REMOTE_HOST': The host name of the user browsing the current page. DNS reverse resolution does not depend on the user's REMOTE_ADDR.
'SERVER_PORT': The port used by the web server. The default value is "80". If using SSL secure connection, this value is the HTTP port set by the user.
$_GET: Array of variables passed to the current script via URL parameters. GET is passed via urldecode().
$_POST: Array of variables passed to the current script via the HTTP POST method.
$_FILES: An array of items uploaded to the current script via HTTP POST.
$_REQUEST — HTTP Request variable, when run in command line mode, will not contain argv and argc information; they will exist in $_SERVERArray.
Since the variables in $_REQUEST are passed to the script file through the GET, POST and COOKIE input mechanisms, they can be tampered with by remote users and are not trustworthy. The items of this array and their order depend on the configuration of PHP's variables_order directive.
$_SESSION: An array of SESSION variables available in the current script.
move_uploaded_file() - Move the uploaded file to a new location; import_request_variables() - Import GET/POST/Cookie variables into the global scope; session_start() - Start a new session or reuse an existing session; getenv() - Get the value of an environment variable;$_ENV: An array of variables passed to the current script through the environment. These variables are imported from the PHP parser's runtime environment into PHP's global namespace. Many are provided by shells that support PHP running, and different systems are likely to run different kinds of shells, so a definitive list is impossible. Check your shell documentation for a list of defined environment variables. Other environment variables include CGI variables, regardless of whether PHP is running as a server module or a CGI processor.
$_COOKIE: Array of variables passed to the current script through HTTP Cookies. setcookie() - Send a cookie
$php_errormsg — Previous error message; $php_errormsg variable contains the latest error message generated by PHP. This variable is only available in the scope where the error occurred, and requires the track_errors configuration item to be turned on (the default is turned off). If the user defines an error handler (set_error_handler()) and returns <code>FALSE, $php_errormsg will be set.
<code><code>@strpos();echo $php_errormsg; //Wrong parameter count for strpos()
?>@strpos();
echo $php_errormsg; //Wrong parameter count for strpos()
?> $HTTP_RAW_POST_DATA — Raw POST data. $HTTP_RAW_POST_DATA Contains the raw data submitted by POST. See always_populate_raw_post_data In general, use php://input instead of $HTTP_RAW_POST_DATA.
$http_response_header — HTTP response header: $http_response_headerThe array is similar to the get_headers() function. When using an HTTP wrapper, $http_response_header will be populated with HTTP response headers. $http_response_header will be created in the local scope.
<code><span><?php <br />function get_contents() {<br> file_get_contents("http://example.com");<br> var_dump($http_response_header);<br>}<br>get_contents();<br>var_dump($http_response_header);<br>?></span>$argc — 传递给脚本的参数数目:包含当运行于命令行下时传递给当前脚本的参数的数目。脚本的文件名总是作为参数传递给当前脚本,因此 $argc 的最小值为 1。这个变量仅在 register_argc_argv 打开时可用。
$argv — 传递给脚本的参数数组:包含当运行于命令行下时传递给当前脚本的参数的数组。第一个参数总是当前脚本的文件名,因此 $argv[0] 就是脚本文件名。这个变量仅在 register_argc_argv 打开时可用。
- getopt() - 从命令行参数列表中获取选项
Exception是所有异常的基类。类摘要:
Exception { /* 属性 */ protectedstring$message ; protectedint$code ; protectedstring$file ; protectedint$line ; /* 方法 */ public__construct ([ string<code>$message = "" [, int<code>$code = 0 [, Exception<code>$previous = <code>NULL ]]] ) finalpublicstringgetMessage ( void ) finalpublicExceptiongetPrevious ( void ) finalpublicintgetCode ( void ) finalpublicstringgetFile ( void ) finalpublicintgetLine ( void ) finalpublicarraygetTrace ( void ) finalpublicstringgetTraceAsString ( void ) publicstring__toString ( void ) finalprivatevoid__clone ( void ) } 属性:message:异常消息内容;code:异常代码;file:抛出异常的文件名;line:抛出异常在该文件中的行号Exception::__construct — 异常构造函数
参数:message:抛出的异常消息内容。code:异常代码。previous:异常链中的前一个异常。Exception::getMessage — 获取异常消息内容
参数:此函数没有参数。Exception::getPrevious — 返回异常链中的前一个异常
参数:Exception::getPrevious — 返回异常链中的前一个异常。追踪异常,并循环打印。 <code><span><?php <br />class MyCustomException extends Exception {}<br>function doStuff() {<br> try {<br> throw new InvalidArgumentException("You are doing it wrong!", 112);<br> } catch(Exception $e) {<br> throw new MyCustomException("Something happend", 911, $e);<br> }<br>}<br>try {<br> doStuff();<br> } catch(Exception $e) {<br> do {<br> printf("%s:%d %s (%d) [%s]\n", $e->getFile(), $e->getLine(), $e->getMessage(), $e- >getCode(), get_class($e));<br> } while($e = $e->getPrevious());<br> }<br>?></span>以上例程的输出类似于:
<span>/home/bjori/ex.php:8 Something happend (911) [MyCustomException] /home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentException] </span>
Exception::getCode — 获取异常代码
参数:此函数没有参数。Exception::getFile — 获取发生异常的程序文件名称
参数:此函数没有参数。Exception::getLine — 获取发生异常的代码在文件中的行号
Parameters: This function has no parameters.Exception::getTrace — Get exception tracing information
Parameters: This function has no parameters.Exception::getTraceAsString — Get exception tracing information of string type
Parameters: This function has no parameters.Exception::__toString — Convert exception object to string
Parameters: This function has no parameters.Exception::__clone — Exception clone
Parameters: This function has no parameters. There is no return value, and exceptions are not allowed to be cloned.ErrorException::__construct — Exception constructor
Parameters: message: The thrown exception message content. code: exception code. severity: The severity level of the exception. filename: The file name where the exception was thrown. lineno: The line number where the exception was thrown. previous: The previous exception in the exception chain.ErrorException::getSeverity — Get the severity of the exception
Parameters: This function has no parameters. <code><code>try {throw new ErrorException("Exception message", 0, 75);
} catch(ErrorException $e) {
echo "This exception severity is: " . $e->getSeverity();
}
?>try {
throw new ErrorException("Exception message", 0, 75);
} catch(ErrorException $e) {
echo "This exception severity is: " . $e->getSeverity();
}
?> 16. Predefined interface Traversable interface:
An interface to detect whether a class can be traversed using foreach. A basic abstract interface that cannot be implemented alone. Instead it must be implemented by the IteratorAggregate or Iterator interface. Built-in classes that implement this interface can use foreach for iteration without implementing the IteratorAggregate or Iterator interface. This is an internal engine interface that cannot be implemented in PHP scripts. The IteratorAggregate or Iterator interface can be used instead.
Traversable { } This interface does not have any methods. Its function is only as the basic interface for all traversable classes. Iterator interface:An interface that can iterate internally via its own external iterator or class.
IteratorextendsTraversable { /* Method */ abstractpublicmixedcurrent (void) abstractpublicscalarkey (void) abstractpublicvoidnext (void) abstractpublicvoidrewind (void) abstractpublicbooleanvalid (void) }Iterator::current — Returns the current element: no parameters, any type can be returned.
Iterator::key — Returns the key of the current element: no parameters, returns a scalar on success, returns null on failure.
Iterator::next — Move forward to the next element: no parameters, any returns will be ignored. This method is called after the foreach loop .
Iterator::rewind — Returns the first element of the iterator: this is the first method called when starting a foreach loop. It will not be called after the foreach loop . Without parameters, any returns will be ignored.
Iterator::valid — Check whether the current position is valid: This method is called after the Iterator::rewind() and Iterator::next() methods to check whether the current position is valid. Without parameters, the return will be converted to boolean. Returns <code>TRUE on success, or <code>FALSE on failure.
IteratorAggregate::getIterator — Gets an external iterator: no parameters, an instance of a class that implements the Iterator or Traversable interface.
ArrayAccess (array access) interface:An interface that provides the ability to access objects like arrays.
ArrayAccess { /* 方法 */ abstractpublicbooleanoffsetExists ( mixed<code>$offset ) abstractpublicmixedoffsetGet ( mixed<code>$offset ) abstractpublicvoidoffsetSet ( mixed<code>$offset , mixed<code>$value ) abstractpublicvoidoffsetUnset ( mixed<code>$offset ) }ArrayAccess::offsetExists — 检查一个偏移位置是否存在:对一个实现了 ArrayAccess 接口的对象使用 isset() 或 empty() 时,此方法将执行。当使用 empty() 并且仅当 ArrayAccess::offsetExists() 返回 <code>TRUE 时,ArrayAccess::offsetGet() 将被调用以检查是为否空。参数:offset 需要检查的偏移位置。成功时返回 <code>TRUE, 或者在失败时返回 <code>FALSE。如果一个非布尔型返回值被返回,将被转换为布尔型。
<code><span><?php <br />class obj implements arrayaccess {<br> public function offsetSet($offset, $value) {<br> var_dump(__METHOD__);<br>}<br>public function offsetExists($var) {<br> var_dump(__METHOD__);<br> if ($var == "foobar") {<br> return true;<br> }<br> return false;<br>}<br>public function offsetUnset($var) {<br> var_dump(__METHOD__);<br> }<br>public function offsetGet($var) {<br> var_dump(__METHOD__);<br> return "value";<br> }<br>}<br>$obj = new obj;<br>echo "Runs obj::offsetExists()\n";<br>var_dump(isset($obj["foobar"]));<br>echo "\nRuns obj::offsetExists() and obj::offsetGet()\n";<br>var_dump(empty($obj["foobar"]));<br>echo "\nRuns obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get\n";<br>var_dump(empty($obj["foobaz"]));<br>?></span>以上例程的输出类似于:
<span>Runs obj::offsetExists() string(17) "obj::offsetExists" bool(true) Runs obj::offsetExists() and obj::offsetGet() string(17) "obj::offsetExists" string(14) "obj::offsetGet" bool(false) Runs obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get string(17) "obj::offsetExists" bool(true) </span>
ArrayAccess::offsetGet — 获取一个偏移位置的值:当检查一个偏移位置是否为 empty() 时,此方法被执行。
参数:offset 需要获取的偏移位置。返回值:可返回任何类型。ArrayAccess::offsetSet — 设置一个偏移位置的值:参数:offset 待设置的偏移位置。value 需要设置的值。没有返回值。
如果另一个值不可用,那么 <code>offset 参数将被设置为 <code>NULL。
ArrayAccess::offsetUnset — 复位一个偏移位置的值:当使用 (unset) 进行类型转换时,该方法不会被调用。
<code>参数:offset 待复位的偏移位置。没有返回值。
序列化接口:
Serializable::serialize — 对象的字符串表示。这个方法担当着对象析构器的角色。在此方法之后,__destruct() 方法将不会被调用。此函数没有参数,返回值:返回对象的字符串表示或者 <code>NULL 。
Serializable::unserialize — 构造对象。这个方法担当着对象构造器的角色。在此方法之后,__construct() 将不会被调用。参数:serialized 对象的字符串表示。
Closure::__construct — 用于禁止实例化的构造函数。这个方法仅用于禁止实例化一个 Closure 类的对象。这个类的对象的创建方法写在 匿名函数 页。此函数没有参数,没有返回值。
Closure::bind — 复制一个闭包,绑定指定的$this对象和类作用域。这个方法是 Closure::bindTo() 的静态版本。
Parameter: closure Anonymous function that needs to be bound. newthis requires an object bound to an anonymous function, or <code>NULL creates an unbound closure. newscope is the class scope you want to bind to the closure, or 'static' means unchanged. If an object is passed in, the type name of the object is used. Class scope is used to determine the visibility of private, protected methods of the $this object within the closure. Returns a new Closure object or <code>FALSE on failure
<code><code>class A {
private static $sfoo = 1;
private $ifoo = 2;
}
$cl1 = static function() {
return A::$sfoo;
};
$cl2 = function() {
return $this->ifoo;
};
$bcl1 = Closure::bind($cl1, null, 'A');
$bcl2 = Closure::bind($cl2, new A(), 'A');
echo $bcl1(), "n"; //1
echo $bcl2(), "n"; //2
?>class A {
private static $sfoo = 1;
private $ifoo = 2;
}
$cl1 = static function() {
return A::$sfoo;
};
$cl2 = function() {
return $this->ifoo;
} ;
$bcl1 = Closure::bind($cl1, null, 'A');
$bcl2 = Closure::bind($cl2, new A(), 'A');
/>echo $bcl1(), "n"; //1
echo $bcl2(), "n"; //2
?> Closure::bindTo — Copies the current closure object and binds the specified $this object and class scope. Create and return an anonymous function, which has the same function body as the current object and binds the same variables, but can bind different objects or a new class scope. The "bound object" determines the value of $this<code>newscope in the function body, and the "class scope" represents a type and determines which private and protected methods can be called in this anonymous function. In other words, the methods that $this can call at this time are the same as the member functions of the <code>newthis class. Static closures cannot have bound objects (the value of the parameter should be set to <code>NULL) but their class scope can still be changed using the bubdTo method. If you just want to copy an anonymous function, you can use cloning instead. Parameter: newthis is an object bound to the anonymous function, or <code>NULL to unbind. newscope associates to the class scope of the anonymous function, or 'static' maintains the current state. If it is an object, the type of this object is used in the scope of the experience class. This determines the visibility of protected, private member methods of the bound object. Return value: Returns the newly created Closure object or returns <code>FALSE
on failure
<code><span><?php <br />class A {<br> function __construct($val) {<br> $this->val = $val;<br> }<br> function getClosure() {<br> //returns closure bound to this object and scope<br> return function() { return $this->val; };<br> }<br>}<br>$ob1 = new A(1);<br>$ob2 = new A(2);<br>$cl = $ob1->getClosure();<br>echo $cl(), "n"; //1<br>$cl = $cl->bindTo($ob2);<br>echo $cl(), "n"; //2<br>?></span> <code><strong><?php <br />class A {<br> function __construct($val) {<br> $this->val = $val;<br> }<br> function getClosure() {<br> //returns closure bound to this object and scope<br> return function() { return $this->val; };<br> }<br>}$ob1 = new A(1);<br>$ob2 = new A(2);<br>$cl = $ob1->getClosure();<br>echo $cl() , "n"; //1<br>$cl = $cl->bindTo($ob2);<br>echo $cl(), "n"; //2<br>?> <span></span></strong> 17. Context options and parameters
The socket context option is available for all wrapper protocols that work over sockets, like tcp, http and ftp
.<code><span><?php <br />// connect to the internet using the '192.168.0.100' IP<br>$opts = array(<br> 'socket' => array(<br> 'bindto' => '192.168.0.100:0',<br> ),<br>);<br>// connect to the internet using the '192.168.0.100' IP and port '7000'<br>$opts = array(<br> 'socket' => array(<br> 'bindto' => '192.168.0.100:7000',<br> ),<br>);<br>// connect to the internet using port '7000'<br>$opts = array(<br> 'socket' => array(<br> 'bindto' => '0:7000',<br> ),<br>);<br>// create the context...<br>$context = stream_context_create($opts);<br>// ...and use it to fetch the data<br>echo file_get_contents('http://www.example.com', false, $context);<br>?></span><code><span><?php <br />// connect to the internet using the '192.168.0.100' IP<br>$opts = array(<br> 'socket' => array( 'bindto' => '192.168.0.100:0',<br> ),<br>);<br>// connect to the internet using the '192.168.0.100' IP and port ' 7000'<br>$opts = array(<br> 'socket' => array(<br> 'bindto' => '192.168.0.100:7000',<br> ),<br>);<br>// connect to the internet using port '7000'<br>$opts = array(<br> 'socket' => array(<br> 'bindto' => ' 0:7000',<br> ),<br>);<br>// create the context...<br>$context = stream_context_create($opts);<br>// .. .and use it to fetch the data<br>echo file_get_contents('http://www.example.com', false, $context);<br>?><em></em></span> HTTP context options — A list of options for the HTTP context. Context options provided for the http:// and
https:// transport protocols. transports. Optional options:- <code>methodstring The remote server supports <code>GET, <code>POST or other HTTP methods. The default value is <code>GET.
- <code>headerstring Extra header sent during request. The value in this option will override other values (such as User-agent:, Host: and Authentication:).
- <code>user_agentstring The value of the header User-Agent: to be sent. If no user-agent is specified in the header context option above, this value will be used. By default, the user_agent set in php.ini is used.
- <code>contentstring Extra data to be sent after the header. Typically using POST or PUT requests.
- <code>proxystring URI The address of the proxy server specified. (e.g. tcp://proxy.example.com:5100).
- <code>request_fulluriboolean when set to <code>TRUE , the entire URI will be used when constructing the request. (i.e. GET http://www.example.com/path/to/file.html HTTP/1.0). Although this is a non-standard request format, some proxy servers require it. The default value is <code>FALSE.
- <code>follow_locationinteger follows the redirect of the Location header. Set to 0 to disable. The default value is 1.
- <code>max_redirectsinteger The maximum number of redirects to follow. A value of 1 or less means no redirects will be followed. The default value is 20.
- <code>protocol_versionfloat HTTP protocol version. The default value is 1.0. Versions prior to PHP 5.3.0 did not implement chunked transfer decoding. If this value is set to 1.1 , compatibility with 1.1 will be your responsibility.
- <code>timeoutfloat read timeout, in seconds (s), specified with float (e.g. 10.5). By default, the default_socket_timeout set in php.ini is used.
- <code>ignore_errorsboolean still gets the content even if there is a fault status code. The default value is <code>FALSE.
FTP context options — FTP context option listing
SSL Context Options — List of SSL context options. ssl:// and tls:// transport protocol context options list. Options: Many.
CURL context options — CURL context options list. CURL context options are available when the CURL extension is compiled (via the --with-curlwrappers configure option). Optional options:
- <code>methodstring <code>GET, <code>POST, or other HTTP methods supported by the remote server. Defaults to <code>GET.
- <code>headerstring Additional request headers. This value will override the value set through other options (such as: User-agent:, Host:, , Authentication:).
- <code>user_agentstring Sets the value of the User-Agent header in the request. The default is the user_agent setting in php.ini.
- <code>contentstring Extra data sent after the header. This option is not used in <code>GET and <code>HEAD requests.
- <code>proxystring URI, used to specify the address of the proxy server (for example tcp://proxy.example.com:5100).
- <code>max_redirectsinteger The maximum number of redirects. 1 or smaller means the redirect will not be followed. The default is 20.
- <code>curl_verify_ssl_hostboolean verification server. Default is <code>FALSE。This option is available in both HTTP and FTP protocols.
- <code>curl_verify_ssl_peerboolean Requires verification of the SSL certificate used. Default is <code>FALSE。This option is available in both HTTP and FTP protocols. Get a page and send data as POST:
<code><span><?php <br />$postdata = http_build_query(<br> array(<br> 'var1' => 'some content',<br> 'var2' => 'doh'<br> )<br>);<br>$opts = array('http' =><br> array(<br> 'method' => 'POST',<br> 'header' => 'Content-type: application/x-www-form-urlencoded',<br> 'content' => $postdata<br> )<br>);<br>$context = stream_context_create($opts);<br>$result = file_get_contents('http://example.com/submit.php', false, $context);<br>?></span>
Phar context options — List of Phar context options. phar:// Context options for the wrapper. Optional: <code>compressint One of Phar compression constants. <code>metadatamixed Phar metadata. See Phar::setMetadata().
Context parameter — Context parameter list. These parameters (parameters) can be set to the context returned by the function stream_context_set_params(). Parameters: <code>notificationcallable When an event occurs on a stream, the callable will be called.
18. Supported protocols and encapsulation protocols
file:// — access the local file system. Filesystem is the default wrapper protocol used by PHP and exposes the local filesystem. When a relative path is specified (a path that does not begin with /, , \, or a Windows drive letter) the path provided will be based on the current working directory. In many cases this is the directory where the script resides, unless it has been modified. When using the CLI, the directory defaults to the directory where the script is called.
In certain functions, such as fopen() and file_get_contents(), include_path is optionally searched, also as a relative path.
属性 | 支持 |
---|---|
受 allow_url_fopen 影响 | No |
允许读取 | Yes |
允许写入 | Yes |
允许添加 | Yes |
允许同时读和写 | Yes |
支持 stat() | Yes |
支持 unlink() | Yes |
支持 rename() | Yes |
支持 mkdir() | Yes |
支持 rmdir() | Yes |
http:// -- https:// — Access HTTP(s) URL. Allows read-only access to a file or resource via the HTTP 1.0 GET method. HTTP requests will be accompanied by a Host: header for compatibility with domain name-based virtual hosts. If the user_agent string is configured in your php.ini file or byte stream context, it will also be included in the request. The data stream allows reading the body of the resource, and the headers are stored in the $http_response_header variable.
If you need to know which URL the document resource comes from (after processing all redirects), you need to process the series of response headers returned by the data flow.
属性 | 支持 |
---|---|
受 allow_url_fopen 限制 | Yes |
允许读取 | Yes |
允许写入 | No |
允许添加 | No |
允许同时读和写 | N/A |
支持 stat() | No |
支持 unlink() | No |
支持 rename() | No |
支持 mkdir() | No |
支持 rmdir() | No |
属性 | PHP 4 | PHP 5 |
---|---|---|
受 allow_url_fopen 影响 | Yes | Yes |
允许读取 | Yes | Yes |
允许写入 | Yes (仅支持新文件) | Yes (新文件/启用 <code>overwrite 后已存在的文件) |
允许添加 | No | Yes |
允许同时读和写 | No | No |
支持 stat() | No | 自 5.0.0 起:仅仅 filesize()、 filetype()、 file_exists()、 is_file() 和 is_dir()。 自 PHP 5.1.0 起: filemtime()。 |
支持 unlink() | No | Yes |
支持 rename() | No | Yes |
支持 mkdir() | No | Yes |
支持 rmdir() | No | Yes |
Properties | PHP 4 | PHP 5 |
---|---|---|
Affected by allow_url_fopen | Yes | Yes |
Allow reading | Yes | Yes |
Allow writing | Yes (only supports new files) | Yes (new file/existing file after enabling <code>overwrite) |
Allow adding | No | Yes |
Allow simultaneous reading and writing | No | No |
Support stat() | No | Since 5.0.0: only filesize(), filetype(), file_exists(), is_file() and is_dir(). Since PHP 5.1.0: filemtime(). |
Support unlink() | No | Yes |
Support rename() | No | Yes |
Support mkdir() | No | Yes |
Support rmdir() | No | Yes |
php:// — Access various input/output streams (I/O streams). PHP provides a number of miscellaneous input/output (IO) streams that allow access to PHP's input and output streams, standard input, output, and error descriptors, in-memory, disk-backed temporary file streams, and filters that can operate on other read-write file resources. device.
php://stdin, php://stdout and php://stderr allow direct access to the corresponding input of the PHP process or Output stream. The data stream references the copied file descriptor, so if you open php://stdin and then close it, you only close the copy and the real referenced <code>STDIN Not affected. Note that PHP's behavior in this area was buggy until PHP 5.2.1. It is recommended that you simply use the constants <code>STDIN, <code>STDOUT and <code>STDERR instead of opening these wrappers manually.
php://stdin is read-only, php://stdout and php://stderr are write-only.
php://input is a read-only stream that provides access to the requested raw data. In the case of POST requests, it is better to use php://input instead of $HTTP_RAW_POST_DATA as it does not depend on the specific php.ini command. Moreover, in this case $HTTP_RAW_POST_DATA is not populated by default, potentially requiring less memory than activating always_populate_raw_post_data. enctype="multipart/form-data" When php://input is invalid.
php://output is a write-only data stream that allows you to write to the output buffer in the same way as print and echo.
php://fd allows direct access to the specified file descriptor. For example, php://fd/3 refers to file descriptor 3.
php://memory and php://temp is a file-like wrapper data stream that allows reading and writing temporary data. The only difference between the two is that php://memory always stores data in memory, while php://temp will store data after the amount of memory reaches a predefined limit (default is 2MB) and stored in a temporary file. The temporary file location is determined in the same way as sys_get_temp_dir(). The memory limit of php://temp can be controlled by adding /maxmemory:NN. NN is the maximum data in bytes retained in memory. If the amount is exceeded, a temporary file will be used.
php://filter is a meta-wrapper designed for filtering applications when a data stream is opened. This is useful for all-in-one file functions like readfile(), file(), and file_get_contents(), where there is no opportunity to apply additional filters before the stream contents are read. The php://filter target uses the following parameters as part of its path. Composite filter chains can be specified on a path.
属性 | 支持 |
---|---|
首先于 allow_url_fopen | No |
首先于 allow_url_include | 仅 php://input、 php://stdin、 php://memory 和 php://temp。 |
允许读取 | 仅 php://stdin、 php://input、 php://fd、 php://memory 和 php://temp。 |
允许写入 | 仅 php://stdout、 php://stderr、 php://output、 php://fd、 php://memory 和php://temp。 |
允许追加 | 仅 php://stdout、 php://stderr、 php://output、 php://fd、 php://memory 和php://temp(等于写入) |
允许同时读写 | 仅 php://fd、 php://memory 和 php://temp。 |
支持 stat() | 仅 php://memory 和 php://temp。 |
支持 unlink() | No |
支持 rename() | No |
支持 mkdir() | No |
支持 rmdir() | No |
仅仅支持 stream_select() | php://stdin、 php://stdout、 php://stderr、 php://fd 和 php://temp。 |
zlib:// -- bzip2:// -- zip:// — Compressed stream. zlib: PHP 4.0.4 - PHP 4.2.3 (only supports systems with fopencookie)
compress.zlib:// and compress.bzip2:// PHP 4.3.0 and above
zlib: functions like gzopen(), but its data stream can also be used by fread() and other file system functions. This is deprecated since PHP 4.3.0 as it will be confused with other file names with ":" characters; please use compress.zlib:// instead.
compress.zlib://, compress.bzip2:// are equal to gzopen() and bzopen(). And can be used on systems that don't support fopencookie.
ZIP extension registered zip: encapsulation protocol. Optional options
- compress.zlib://file.gz
- compress.bzip2://file.bz2
- zip://archive.zip#dir/file.txt
data:// — data (RFC 2397). Usage: data://text/plain;base64,
属性 | 支持 |
---|---|
受限于 allow_url_fopen | No |
受限于 allow_url_include | Yes |
允许读取 | Yes |
允许写入 | No |
允许追加 | No |
允许同时读写 | No |
支持 stat() | No |
支持 unlink() | No |
支持 rename() | No |
支持 mkdir() | No |
支持 rmdir() | No |
Print the contents of data://:
<code><code>// 打印 "I love PHP"echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo=');
?>//Print "I love PHP"
echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo=');
? > Get media type: <code><span><?php <br />$fp = fopen('data://text/plain;base64,', 'r');<br>$meta = stream_get_meta_data($fp);<br>echo $meta['mediatype']; // 打印 "text/plain"<br>?></span> <code><p><?php <br />$fp = fopen('data://text/plain;base64,', 'r');<br>$meta = stream_get_meta_data($fp); <br>echo $meta['mediatype']; // Print "text/plain"<br>?><span></span></p> glob:// — Find matching file path patterns. Usage: glob://
Attributes | Supported |
---|---|
Subject to allow_url_fopen | No |
Subject to allow_url_include | No |
Allow reading | No |
Allow writing | No |
Allow appending | No |
Allow simultaneous reading and writing | No |
Support stat() | No |
Support unlink() | No |

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
