10.11
php
masanori
Note
masanori did not leave a note
masanori did not leave a note
- /*
- I need to display EVERY entry inside codepoint, not only the 1st one.
- My script only displays "亜 > cp_type_ucs[4e9c] " for example.
- You can launch the script at that adress : http://www.grossebertha.net/simplexml.php
- <codepoint>
- <cp_value cp_type="ucs">4e9c</cp_value>
- <cp_value cp_type="jis208">16-01</cp_value>
- </codepoint>
- */
- echo '<b>Code Point insérés :</b><br />';
- $i = 0;
- foreach ($xml->character as $char)
- {
- $i++;
- foreach($char->codepoint->cp_value->attributes() as $a => $b)
- {
- }
- echo '<br />';
- if ($i == 10) break;
- }
Parsed in 0.030 seconds, using GeSHi 1.0.7.14