Jump to content

arne_anka

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

arne_anka's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. hi, does anybody know an example or howto, describing how to create a php-array from c++? i need to read a textfile w/ c++, process it and give the results to php. the easiest way would imo be, to put the results in php-arrays and simply call unserialize() in php. any (other) ideas?
  2. hi, it's probably very trivial but i still don't get it: a multi-dimensional array like $a=array(1 => array ( 2 => array (     3 => array(     "3A" => array(     "3B" => array(     "X" => array()     ),     "3C" => array(     "X" => array()     )     )     ),     4 => array(     5 => array(     "X" => array()     ),     "5A" => array(     6 => array(     "X" => array()     )     )     ) ), ) ); shall be converted to one-dimensional arrays containing a path from 1 to X, in the given example four arrays: 1: array(1, 2, 3, 3A, 3B, X) 2: array(1, 2, 3, 3A, 3C, X) 3: array(1, 2, 4, 5, X) 4: array(1, 2, 4, 5A, 6, X) any help appreciated!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.