Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Parse a CSV string into an array * * @phpstub * * @param string $input ..
Decoded Output download
<?php
/**
* Parse a CSV string into an array
*
* @phpstub
*
* @param string $input
* @param string $delimiter
* @param string $enclosure
* @param string $escape
*
* @return array Returns an indexed array containing the fields read.
*/
function str_getcsv($input, $delimiter = '\',\'', $enclosure = '\'"\'', $escape = '\'\\\'')
{
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* Parse a CSV string into an array
*
* @phpstub
*
* @param string $input
* @param string $delimiter
* @param string $enclosure
* @param string $escape
*
* @return array Returns an indexed array containing the fields read.
*/
function str_getcsv($input, $delimiter = '\',\'', $enclosure = '\'"\'', $escape = '\'\\\\\'')
{
}
Function Calls
None |
Stats
MD5 | 2a76ff904d36826d5837ed5301a60dea |
Eval Count | 0 |
Decode Time | 78 ms |