update onigasm (fix php issue)
This commit is contained in:
Родитель
543e615911
Коммит
9247e5af16
|
@ -677,9 +677,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"onigasm": {
|
"onigasm": {
|
||||||
"version": "2.2.2",
|
"version": "2.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.3.tgz",
|
||||||
"integrity": "sha512-TQTMk+RmPYx4sGzNAgV0q7At7PABDNHVqZBlC4aRXHg8hpCdemLOF0qq0gUCjwUbc7mhJMBOo3XpTRYwyr45Gw==",
|
"integrity": "sha512-y3Qg9q6g6CVjRWN9m95tmi1owzaIlRXkk65sANAq2kjjBjrW7rYH8zJO4YmCoa00igrhjRXMXeiTEfcf5K3z7A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"lru-cache": "^4.1.1"
|
"lru-cache": "^4.1.1"
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
"@types/node": "^12.6.2",
|
"@types/node": "^12.6.2",
|
||||||
"durations": "^3.4.1",
|
"durations": "^3.4.1",
|
||||||
"mocha": "^6.1.4",
|
"mocha": "^6.1.4",
|
||||||
"onigasm": "^2.2.2",
|
"onigasm": "^2.2.3",
|
||||||
"tslint": "^5.18.0",
|
"tslint": "^5.18.0",
|
||||||
"typescript": "^3.5.3"
|
"typescript": "^3.5.3"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
// Declare the variable 'string' and assign it a value.
|
||||||
|
// The <br> is the HTML equivalent to a new line.
|
||||||
|
$string = 'Hello World!<br>';
|
||||||
|
|
||||||
|
// You can echo the variable, similar to the way you would echo a string.
|
||||||
|
echo $string;
|
||||||
|
|
||||||
|
// You could also use print.
|
||||||
|
print $string;
|
||||||
|
|
||||||
|
// Or, if you are familiar with C, printf can be used too.
|
||||||
|
printf('%s', $string);
|
||||||
|
?>
|
Загрузка…
Ссылка в новой задаче