Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter TerryCai

    (@terrycai)

    [close]
    `https://php.net/manual/en/function.xml-parser-create.php

    // Parse the XML file into a verbose, flat array struct.
    // Then, coerce that into a simple nested array.
    function getTree() {
    $parser = xml_parser_create(); // ‘ISO-8859-1’
    xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
    xml_parse_into_struct($parser, $this->data, $vals, $index);
    xml_parser_free($parser);

    $i = -1;
    return $this->getchildren($vals, $i);
    }

    Thread Starter TerryCai

    (@terrycai)

    wp-o-matic\wpomatic.php CREATE Table add charset
    $charset_collate
    reference: wp-admin\includes\schema.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘import Character code problem’ is closed to new replies.