Skip to content

Instantly share code, notes, and snippets.

View alisalmabadi's full-sized avatar
🎯
Focusing

Ali Salmabadi alisalmabadi

🎯
Focusing
View GitHub Profile
@alisalmabadi
alisalmabadi / get_instagram_users_data.php
Last active January 26, 2019 08:26
by this php function you can get most of the important users data without Instagram api
function get_instagram_users_data($pageUrl) {
$url = $pageUrl;
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_REFERER, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
@alisalmabadi
alisalmabadi / persian_num.php
Created November 6, 2018 13:23
this function can convert all English numbers to Persian
function Convertnumber2persian($srting) {
$srting = str_replace('0','۰', $srting);
$srting = str_replace('1','۱', $srting);
$srting = str_replace('2','۲', $srting);
$srting = str_replace('3','۳', $srting);
$srting = str_replace('4','۴', $srting);
$srting = str_replace('5','۵', $srting);
$srting = str_replace('6','۶', $srting);
$srting = str_replace('7','۷', $srting);
$srting = str_replace('8','۸', $srting);
@alisalmabadi
alisalmabadi / flash_message.php
Created November 6, 2018 13:15
can be used in flash message laravel package
function flash($message,$level='info')
{
session()->flash('flash_message',$message);
session()->flash('flash_message_level',$level);
}
@alisalmabadi
alisalmabadi / cities.php
Last active May 20, 2022 08:09
this function contains all cities of Iran according to the id of province which is posted in last gist
function cities($mode,$pid=1) {
$cities = array(
1 => array(
1 => "اسکو",
2 => "اهر",
3 => "آذرشهر",
4 => "بستان آباد",
5 => "بناب",
6 => "تبریز",
7 => "جلفا",
@alisalmabadi
alisalmabadi / provinces.php
Last active May 20, 2022 08:07
this function contains all Iran provinces(لیست شهر های ایران)
function provinces($mode,$id=0)
{
$provinces= array(
1=>"آذربایجان‌شرقی",
2=>"آذربایجان‌غربی",
3=>"اردبیل",
4=>"اصفهان",
5=>"البرز",
6=>"ایلام",
7=>"بوشهر",