abonnel-siteweb/data/pages/informatique/langage/php/utiliser-php-en-ligne-de-co...

18 lines
498 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

====== Utiliser PHP en ligne de commande ======
{{ :dummy.png?75x75|Nom de la section}}
{{tag>php}}
===== PHP =====
La commande PHP, une fois validée, attendra du code PHP. Il faudra indiquer la code de fin de fichier (EOF, <kbd>Ctrl</kbd> + <kbd>D</kbd>) pour que le code PHP sexécute.
{{:informatique:pasted:20220320-063404.png}}
===== PHP -r =====
On peut utiliser l'option ''-r'', qui execute le code PHP sans utiliser les tags ''<? ... ?>''
<code>
php -r 'echo date("c");'
</code>