I have a class which is :
<?php
class FileObject{
private $name;
private $arr;
function __construct($name){
$this->name = $name;
$arr = array();
}
public function readFile(){
$fileHandler = fopen($this->name, "rb");
while (!feof($fileHandler) ) {
$line_of_text = fgets($fileHandler);
$parts = explode(' ', $line_of_text);
$count = 0;
foreach($parts as $tokens){
$arr[$tokens] = $count;
$count++;
}
}
if(checkInArr("fox"))
echo "yes";
else
echo "no";
ksort($arr);
print_r($arr);
fclose($fileHandler);
}
function checkInArr($needle){
if(array_key_exists($needle,$arr))
return TRUE;
else
return FALSE;
}
}
?>
and I’m getting this error:
Fatal error: Call to undefined function checkInArr() in
C:\wamp\www\jbglobal\file_lib.php on line 29
Any ideas why?
It should be:
Creating the
checkInArr();method is somewhat redundant though unless you plan to do some more advanced detection, you should just usearray_key_exists($needle, $arr)in thatifstatement.