User Tools

Site Tools


php

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
php [2021/05/01 11:35]
admin created
php [2021/05/02 11:26] (current)
admin
Line 1: Line 1:
 ## Simulate a php server on Mac ## Simulate a php server on Mac
  
-Open terminal +Open terminal\\ 
-cd to folder +cd to folder\\ 
-Start php server ​````php -S 127.0.0.1:​8000```` +Start php server ```php -S 127.0.0.1:​8000```\\ 
-Open browser and enter ````http://​localhost:​8000/​file-name.php````+Open browser and enter ```http://​localhost:​8000/​file-name.php``` 
 + 
 + 
 +## Regular Expression 
 + 
 +https://​regexr.com 
 + 
 +### Flags 
 + 
 +https://​javascript.info/​regexp-introduction Regular expressions may have flags that affect the search. 
 + 
 +There are only 6 of them in JavaScript:​ 
 +<​file>​ 
 +
 +With this flag the search is case-insensitive:​ no difference between A and a (see the example below). 
 +
 +With this flag the search looks for all matches, without it – only the first match is returned. 
 +
 +Multiline mode (covered in the chapter Multiline mode of anchors ^ $, flag "​m"​). 
 +
 +Enables “dotall” mode, that allows a dot . to match newline character \n (covered in the chapter Character classes). 
 +
 +Enables full Unicode support. The flag enables correct processing of surrogate pairs. More about that in the chapter Unicode: flag "​u"​ and class \p{...}. 
 +
 +“Sticky” mode: searching at the exact position in the text (covered in the chapter Sticky flag "​y",​ searching at position) 
 +</​file>​
php.1619840132.txt.gz · Last modified: 2021/05/01 11:35 by admin