Collection of mostly command line tools / PHP scripts. Somewhat out of date.

⌈⌋ ⎇ branch:  scripts + snippets


Artifact [ab0cca44f3]

Artifact ab0cca44f35f451d71381ab8663c68cf58a54c32:

Wiki page [php] by mario 2014-12-12 19:50:25.
D 2014-12-12T19:50:25.844
L php
N text/x-markdown
U mario
W 568
## Shell PHP function wrappers

Allow to call plain PHP functions from the command line.

  * Parameters can be passed as arguments:

        strtolower ABC

  * Or passed in from stdin:

        echo ABC | strtolower

  * And array functions can use JSON

        echo [1,2,3] | print_r

  * Alternatively as positional parameters

        echo '[1,2,3]' | var_dump -

It's most useful of course with simple string-to-string pipes:

    cat file | gzencode | base64_encode | base64_decode | gzdecode | print_r

(Or something more pointful..)

Z 76d9a2a2cd84bbd2a2b8a0b29124b510