You appear to be a bot. Output may be restricted
Description
Return the file list as an array
Usage
$array = Git::result_as_array();
Parameters
Returns
array of resultsSource
File name: oik-batch/includes/class-git.phpLines:
1 to 6 of 6
public function result_as_array() { $result_array = explode( "\n", $this->result ); //print_r( $this->result ); //print_r( $result_array ); return( $result_array ); }View on GitHub