We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e1fd4 commit 4500dffCopy full SHA for 4500dff
php/README.md
@@ -1,6 +1,17 @@
1
PHP
2
3
-文件 filename `index.php`:
+Check version:
4
+
5
+```sh
6
+$ php --version
7
+PHP 8.0.0 (cli) (built: Nov 30 2020 13:47:29) ( NTS )
8
+Copyright (c) The PHP Group
9
+Zend Engine v4.0.0-dev, Copyright (c) Zend Technologies
10
+ with Zend OPcache v8.0.0, Copyright (c), by Zend Technologies
11
+```
12
13
14
+Create file `index.php`:
15
16
```php
17
<?php
@@ -15,10 +26,18 @@ var_dump($str);
26
27
```
28
18
-
29
+Run the code in Terminal:
19
30
20
31
21
32
$ php index.php
22
33
Hello, World!
23
34
string(13) "Hello, World!"
24
35
36
37
+## References
38
39
+https://www.php.net/
40
41
+https://www.jetbrains.com/phpstorm/
42
43
+-END-
0 commit comments