Perl的和Ruby的语法组织得非常好,于是PHP也跟着尝试将这两种语言的优势引入。
Grammar list of Perl and Ruby was so very well organized, I tried to do any PHP Taking advantage of.
I think people who know something about other languages can understand somehow the PHP syntax If you are reading this.
Please tell us mistake, if any shortage etc. m (__) m
PHP5.3 system has been released, but is intended for PHP5.2 system here.
PHP code begins with the start tag of " Php". End tag is "?>". Use the end tag when you fill the PHP code in HTML, omitting the end tag has become a convention when writing the only PHP code as a library.
It had positive commentary on Kiske's: id reason for omitting the end tag. Thank you.
PHP 基本语法最快入门补充 - Absolute Playing!
I use the print / echo.
I often use var_dump () to debug. contents of the variable in var_dump () is output.
array (3) {
[0] =>
int (1)
[1] =>
int (2)
[2] =>
int (3)
}
单行注释(Line Comments)
多行注释 Multi-line comments
It is a declaration of the variable.
I run a PHP file on the command line.
$ php hoge.php
You can also write directly to the PHP code. Php?> Is not required.
$ php-r "var_dump ('a');"
Use the redirect to write the output to a file results.
$ php hoge.php> out
I can check grammar in php command.
$php -l hoge.php
There integer, floating-point to a number.
Quotient and remainder. Remove the integer part in the intval function after performing the division of normal order to obtain the quotient.
I must be enclosed in either single or double quotes is a string. You can use special characters, and \ n (tab), such as (newline) \ t is in double quotes. In addition, it can be variable expansion within a character string enclosed in double quotes.
There are only associative array with PHP. Array is represented as an associative array of numbers is key. I also have the order.
1, 'b' => 2, 'c' = > 3); //associative array (1, 'a' => 1, 2)
$array3 = array; //mixed also OK
?>
Assignment of a reference element
The number of elements
hoge
Notation such as the following will also be used when you described in HTML.
hoge
foo
elseif or else if is possible.
Notation such as the following will also be used when you described in HTML.
hoge
foo
Notation such as the following will also be used when you described in HTML.
Notation such as the following will also be used when you described in HTML.
I can handle each element of the associative array.
$v) {
// $k is the key of the element, $v is the value of the element
}
?>
Notation such as the following will also be used when you described in HTML.
There is a function with PHP. You can use the return to return the return value.
//You can also return multiple values in an array
function Get_multi ($v1, $v2) {
$v1 + = 100;
$v2 + = 200;
Return array ($v1, $v2);
}
list ($ret1, $ret2) = Get_multi(1, 2); //$ret1 = 101, $ret2 = 202
?>
There are several ways to file input and output.
Make the input and output files using the file pointer.
It is stored in the array reads the entire file.
and then stored as a string by reading the entire file file_get_contents function. file_put_contents function writes to the file all the value of a variable.
In the following cases: in PHP, they are determined to be false.
== /! = In comparison operators such as, automatic conversion of numeric, string is performed. It may lead to results thus not intended.
In these cases, it is possible to compare exactly also the type of the variable === /! With ==.
You can use the isset function to find out whether a variable is defined. True is returned if it is defined. However, the value of the variable is returned is false can be NULL in the isset function.
You can use the $argv variable to receive the command-line arguments.
You can use the array_map function, you can receive as a new associative array with the process to each element of the associative array.
You can use the array_filter function, you can receive as a new associative array only the elements that match the conditions.
2);');
?>
There is a configuration file with PHP. It is important to note behavior will change depending on the setting. In addition to the configuration file called php.ini, this setting can be set in the source code httpd.conf, and. Htaccess,.
The setting method will vary depending on the item, but you can use the () ini_set is often when setting in the source code.
The current settings, I can check the php phpinfo command or function.
# Output all the setting value
I can define a class in the class.
name = $name;
}
public function hello () {
printf ("!% s: Hello \n", $this-> name);
}
}
$User = new User ('Mike');
$user-> hello ();
?>
I can also be inherited. You can only single inheritance.
You can throw an exception throw. I will catch an exception in a try / catch. There is no equivalent to the finally in the other languages.
GetTraceAsString ();
}
?>
For PHP books have been published many, but most would be helpful after all is the official manual.
PHP: PHP Manual - Manual
The TIps you a little when using the official manual.
When you open the official manual in a browser, the page opens directly when you enter the name of the function was examined behind http://php.net/. You can also keyword similar If no match is displayed most, to choose from among the candidates.
http://php.net/array
I have a school several coding conventions, but the coding conventions of Zend Framework will help you.
Zend Framework PHP Coding Standard - Zend Framework Manual
There are also function as an object-oriented language with PHP. The following publications will be helpful.
Sweet @ sotarok with rice and meat - and the documentation that you held a study session modern PHP
Be used framework is becoming a major in Web systems development using PHP.
There is an open source framework for many, the major ones are as follows.
Related entries