I have a file (Test.txt) with the following data: 1.0
I want to read the contents of this file in an array, and then print the variables. Here is my current code:
function readUserDetails($username) {
$userDetails = explode(',', file($username.".txt"));
print($userDetails[0].$userDetails[1]);
}
If I call the readUserDetails function with the following parameters: "Test", I get the following errors:
Note. Converting an array to a string in C: \ Users \ s13 \ Game \ Game6 \ default.php on line 128 Note: Undefined offset: 1 in C: \ Users \ s13 \ Game \ Game6 \ default.php on line 129 Array
Can I get some help to make this work?
source
share