3v4l.org

run code in 300+ PHP versions simultaneously
<?php function callStoredProc( $storedProc ) { $args = func_get_args(); $storedProc = array_shift( $args ); foreach ( $args as $i => $arg) $args[$i] = "'$arg'"; $argStr = implode( ',', $args ); echo "call ${storedProc}(${argStr})"; } callStoredProc( 'something', 1, 'a', 'b\'' );

preferences:
36.48 ms | 402 KiB | 5 Q