Hi
Ich möchte JavaScript code in ein PHP array umwandeln. Beispiel:
- Diese JavaScript 'Blöcke' (z.B. "map_herotransfer(?,?,?)" oder "themap = new MapTalk(); themap.add(......)") haben stets die gleiche Syntax.
- Praktisch alle Blöcke können 'onComplete'-events, also 'followers' haben
Was wäre die beste Möglichkeit, diese Aufgabe anzugehen?
Vielen Dank im Voraus für eure Hilfe!
Gruss
Roman
Ich möchte JavaScript code in ein PHP array umwandeln. Beispiel:
Code:
themap = new MapTalk(); themap.add(heroclass+'portrait.jpg','So! Are those mushrooms any good?').addEvent('onComplete', function() { /*even more js code */ });map_herotransfer(10,14,true);
PHP-Code:
Array
(
[0] => Array
(
['event'] => 'themap = new MapTalk(); themap.add(heroclass+"portrait.jpg","Are those any good?")'
['followers'] => Array
(
[0] => '/*even more js code*/'
)
)
[1] => Array
(
['event'] => 'map_herotransfer(10,14,true)'
)
)
- Praktisch alle Blöcke können 'onComplete'-events, also 'followers' haben
Was wäre die beste Möglichkeit, diese Aufgabe anzugehen?
Vielen Dank im Voraus für eure Hilfe!
Gruss
Roman
Kommentar