Help for this page

Select Code to Download


  1. or download this
    while (start_ptr < end_ptr) {
        start_ptr += UTF8SKIP(start_ptr);
        len++;
    }
    
  2. or download this
    PL_utf8_length($chunk)                    # first iteration
    PL_utf8_length($chunk . $chunk)           # second iteration
    PL_utf8_length($chunk . $chunk . $chunk)  # third iteration
    ...and so on...
    
  3. or download this
    PL_utf8_length($chunk)  # 1st
    PL_utf8_length($chunk)  # 2nd
    PL_utf8_length($chunk)  # 3rd
    ...