Let's suppose the following situation in which I have array composed of several array with numerical values:
$array = array(
array(22, 25, 28),
array(22),
array(22, 23)
)
I would like to leave this array ord...
I have a grid-shaped form that returns the following values inside an Array:
array (size=3)
0 =>
array (size=5)
'pei_seq' => int 0
'prg_cod_barra' => string '7899619704729' (length=13)
'pei_prg_cod' => stri...
I have the following array returned from a webservice (in the image I identify what I want, below the text to copy paste if necessary):
Array([DataTable]=>Array([ID]=>STOCK[Line]=>Array([0]=>Array([Fields]=>Array([0]=>Array([F...
I have the array $dados below:
array(5) {
[0]=> "2018-03-28"
[1]=> "jantar"
[2]=> "lanche"
[3]=> "2018-03-29"
[4]=> "lanche"
}
From this array, how could I mount another two-dimensional array so that it...
I have a big problem, I already researched in several places and I did not find the solution I hope you can help me ...
My goal is to create a function in JS that will get an array as a base, which I will call here as " A " its structure is this...
I have an array with two columns, where in the first column I have the name of a station, and in the second I have the address of the station.
I need to sort this array in alphabetical order of the station name, without losing the associated...
I have a view in the bank of my application where I count the user's name, his sector and the total number of records issued (tale from another table):
TotalPorUsuario (View) Table
Columns: name (string), sector (String), total (i...
I'm trying to construct a method able to fill an n-dimensional array at all positions, for example: I have a 2-dimensional array, where that array is 2x2 with only 2 dimensions on a Cartesian plane, for example.
I would like the same method t...