You appear to be a bot. Output may be restricted
Description
Append a record to the temporary file
Usage
oiksc_function_loader::write( $line );
Parameters
- $line
- ( string ) required – some PHP source code
Returns
voidSource
File name: oik-shortcodes/classes/class-oiksc-function-loader.phpLines:
1 to 6 of 6
function write( $line ) { $handle = fopen( $this->tempnam, "a+" ); //echo $line; fwrite( $handle, $line ); fclose( $handle ); }View on GitHub