• Empleos
  • Sobre nosotros
  • profesionales
    • Inicio
    • Empleos
    • Cursos y retos
  • empresas
    • Inicio
    • Publicar vacante
    • Nuestro proceso
    • Precios
    • Evaluaciones
    • Nómina
    • Blog
    • Comercial
    • Calculadora de salario

0

164
Vistas
Reading a Seriers of Numbers from a txt file into an Array with JSON but every digit is now seperated

So I've used JSON to get a Series of Numbers from .txt into an array in JavaScript but once i try to log them with something like console.log(testbodysnake[0][0]) i just get the bracket [ instead of the following number.

This is what it looks like in the .txt file
[(400, 160)]
[(400, 140)]
[(400, 120)]
[(400, 100)]
The output is logged like this 
console.log(testbodysnake[0][0],testbodysnake[0][1], testbodysnake[0][2], testbodysnake[0][3], testbodysnake[0][4], testbodysnake[0][5], testbodysnake[0][6], testbodysnake[0][7], testbodysnake[0][8], testbodysnake[0][9], testbodysnake[0][10], testbodysnake[0][11])
[ ( 4 0 0 ,   1 6 0 ) ]
Getting the values from the .txt file

<?php
$handle = fopen ("testbodysnake.txt", "r");
$testbodysnake = [];

while ( !feof($handle))
{
  $testbodysnake[] = fgets($handle);

}

fclose($handle);
print_r($testbodysnake);
?>
Getting the Values into the array

var testbodysnake = []; 
    var testbodysnake = <?php echo json_encode($testbodysnake); ?>; 

Does anybody know how i can easily fix this issue and get the array to read the numbers as a whole? Any help would be appreciated

almost 3 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Nuestro proceso Comercial
Legal
Términos y condiciones Política de privacidad
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recomiéndame algunas ofertas
Necesito ayuda