Download the PHP package abdelfadeil/phpslug without Composer
On this page you can find all versions of the php package abdelfadeil/phpslug. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package phpslug
PHPSLUG
INSTALL
composer require abdelfadeil/phpslug
EX
<?php
use Abdelfadeil\SlugPhp\Slug;
include "vendor/autoload.php";
$configDB = [
"db_host"=>"localhost", // default = 'localhost'
"db_user"=>"root", // default = 'root'
"db_pass"=>"", // default = ''
"db_name"=>"slug_db"
];
$text = "مقالات عن البرمجة";
$title = Slug::get_slug($configDB,"posts","title",$text);
echo $title; // مقالات-عن-البرمجة
// فى حالة كان العنوان موجود من قبل يتم اضافة 0 للنص
// 0مقالات-عن-البرمجة
// واذا كان السابق موجود يتم اضافة 0 اخر وهكذا
// 0مقالات-عن-البرمجة0
// فى حالة اذا اردت تغيير الفواصل بين الكلمات تقوم بوضع العلامه اخر براميتر على سبيل المثال
$text = "مقالات عن البرمجة";
$title = Slug::get_slug($configDB,"posts","title",$text , "_");
echo $title ; // مقالات_عن_البرمجة
All versions of phpslug with dependencies
PHP Build Version
Package Version
No informations.
The package abdelfadeil/phpslug contains the following files
Loading the files please wait ....