Giter Club home page Giter Club logo

Comments (4)

lux avatar lux commented on May 24, 2024 1

I think you're right, filter()'s parameters are getting pretty long and the order isn't necessarily sorted by what's needed most often. Not wanting to break compatibility, for now I've added a new slug() method with the following parameters:

public static function slug ($string, $maxLength = 200, $separator = '-', $language = 'en')

Hopefully that's easier to remember and use for more common cases :)

from urlify.

lux avatar lux commented on May 24, 2024

Ah, I must have missed that parameter changing to $separator in a PR, but it looks like you can accomplish the same thing with the separator. I just tested this code:

<?php
  
require 'vendor/autoload.php';

echo URLify::filter ('some_text here', 200, 'en', false, false, true, '-') . PHP_EOL;
echo URLify::filter ('some_text here', 200, 'en', false, false, true, ' ') . PHP_EOL;

And the output is:

some-text-here
some text here

I suppose what was lost was the ability to set it to false in order to preserve underscores (e.g., "some_text-here").

from urlify.

Yamakasi avatar Yamakasi commented on May 24, 2024

OK, thanks a lot for the quick response and explanation! That solution also works!

I wasn't sure if it had a reason but you optimized it a lot (which I was doing in the old version) so I was a little bit flabbergasted, sorry for that :)

Does it stay this way or are you going to change/optimize what I described ? Maybe the arg order could be optimized ?

from urlify.

Yamakasi avatar Yamakasi commented on May 24, 2024

@lux Can't say more... Understood, sure, Superb! Thanks!

(I don't know where the zero's come from, can't backspace them as I don't see them)

0000000000000000

from urlify.

Related Issues (20)

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.