Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

242
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

about 4 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 Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda