mysqli time zone

mysqli time zone

Pictorial Presentation of MySQL CONVERT_TZ() functionOn one server, when I run:
mysql> select now();
+---------------------+
| now()               |
+---------------------+
| 2009-05-30 16:54:29 |
+---------------------+
1 row in set (0.00 sec)
On another server:
mysql> select now();
+---------------------+
| now()               |
+---------------------+
| 2009-05-30 20:01:43 |
+---------------------+
1 row in set (0.00 sec)

There are three places where the timezone might be set in MySQL:

In the file "my.cnf" in the [mysqld] section

default-time-zone='+00:00'

@@global.time_zone variable

To see what value they are set to:
SELECT @@global.time_zone;
To set a value for it use either one:
SET GLOBAL time_zone = '+8:00';
SET GLOBAL time_zone = 'Europe/Helsinki';
SET @@global.time_zone = '+00:00';

طريقة تقسيم الموضوع الي أكثر من صفحة في الوردبرس

بسم الله 
هذه طريقة جديد لتقسيم الموضوع الي أكثر من جرئ داخل الوردبريس وقد أدت مفعول جيد 
داخل مجوعة من المواقع المتخصصة في 
الطريقة الاولي
وهي سهلة الاتحتاج الي الكثير من الجهد 

شاهد الصور وسوف تفهم بهولة كلية
<!--nextpage-->
نضع الكود فيعند كتابة مقالة جيد أو المقالة التي نريد أن نظيف لها عدد صفحات لتنقل في الموضوع المواحد 


عن كتابة الموضوع نضغط علي 

أم الطريقة الثانية الاسهل من الاولى بكثير فهي تعتمد علي لوحة الكيبورد فقط
نضغظ علي alt+shift+p
عند كتابة المقالة ونريد أن الجزء الذى كتبناه  في الاعلى
يظهر في صفحة  منفصلة داخل المقالة بحيث يمكنك التنقل بين الصفحات في المقالة الواحدة وهذه الإضافة جميلة جدا تزيد الي مميزات الوردبريس و تنقص في مدونة البلوجر المحددة الخصائص لأنها مجانية 
لا شك الن هذه الطريقة لها مميزات أخي وهي عرض الاعلان أكثر من مرة داخل المقالة الواحدة بحيث الربح يتضاغف وسوف يتضاعف
أتمني أن تستفيدوا من هذه التدوينة
 وشكرا 
Android Studio snippets

Android Studio snippets


Code snippets are known as Live Templates in Android Studio

Browse the current Live Templates

Go to File > Settings > Editor > Live Templates. Then click on the different options to see what they do.
Here are some interesting ones:
  • foreach
    for ($i$ : $data$) {
        $cursor$
    }
  • Toast
    android.widget.Toast.makeText($className$.this, "$text$", Toast.LENGTH_SHORT).show();
  • todo
    // TODO: $date$ $todo$ 
  • logi
    android.util.Log.i(TAG, "$METHOD_NAME$: $content$");
The words surrounded by $ signs are places where things will be filled in automatically from the context or where the user can tab through to fill them in.

Use a Live Template

Just type in the abbreviation and tab through anything that you need to fill in.
Example:
logi
and I'm given this
Log.i(TAG, "myMethodName: |");
with the cursor located at the position I marked with the vertical line |.

Make you own Live Template

Just write the code, highlight it, and go to Tools > Save as Live Template.

Further Study

shareimprove this answer
ارقام بدون فاصلة في php

ارقام بدون فاصلة في php

New Correct Answer

Use the PHP native function bcdiv
echo bcdiv(2.56789, 1, 1);  // 2.5
echo bcdiv(2.56789, 1, 2);  // 2.56
echo bcdiv(2.56789, 1, 3);  // 2.567
echo bcdiv(-2.56789, 1, 1); // -2.5
echo bcdiv(-2.56789, 1, 2); // -2.56
echo bcdiv(-2.56789, 1, 3); // -2.567

echo bcdiv(2.56789, 1,0 ) 2