Coder Social home page Coder Social logo

Comments (4)

neo22s avatar neo22s commented on August 17, 2024

I have tried this:

$cjk_encoding = array('Big5','EUC-JP','EUC-KR','GB18030','GB2312','ISO 2022-JP','KS C 5861','Shift-JIS');
            $encoding_detected = mb_detect_encoding($title,implode(',',$cjk_encoding));

        if (in_array($encoding_detected,$cjk_encoding))
            echo 'found'.$encoding_detected;
        else
            echo 'not found';

But detects UTF8 also returning GB18030...

So at the end I will go for something as lame as:

        $res = slugifier\slugify($title);

        //in case empty return because the usage of CJK characters....
        return (strlen($res)==0 AND strlen($title)>0) ? $title:$res;

So if slugify returns empty but original had length then use original....

from slugifier.

keyvanakbary avatar keyvanakbary commented on August 17, 2024

Hey, thanks a lot for the report! Sorry for the delay.

PHP multibyte support is somewhat complicated, it's pretty difficult to cover all cases and I would like to keep the library as simple as possible. I think using the Elvis operator on those cases does the job good enough

$slug = s\slugify($text) ?: 'n-a';

Or in your specific case

return s\slugify($title) ?: $title;

What do you think?

from slugifier.

neo22s avatar neo22s commented on August 17, 2024

winner:

return s\slugify($title) ?: $title;

thanks ;)

from slugifier.

keyvanakbary avatar keyvanakbary commented on August 17, 2024

:)

from slugifier.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.