الفرق بين المراجعتين لصفحة: «Ruby/Time/asctime»
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق. |
||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: التابع <code>asctime | <noinclude>{{DISPLAYTITLE: التابع <code>Time.asctime</code> في روبي}}</noinclude> | ||
[[تصنيف: Ruby]] | [[تصنيف: Ruby]] | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Time]] | [[تصنيف: Ruby Time]] | ||
يُعيد التابع <code>asctime</code> | يُعيد التابع <code>asctime</code> سلسلة نصية أساسية (canonical string) تحوي [[Ruby/Time|توقيت]] الكائن <code>[[Ruby/Time|Time]]</code> الذي استدعي معه. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">asctime → string</syntaxhighlight> | <syntaxhighlight lang="ruby">asctime → string</syntaxhighlight> | ||
==القيمة | ==القيمة المعادة== | ||
تعاد سلسلة نصية أساسية تحوي [[Ruby/Time|توقيت]] الكائن <code>[[Ruby/Time|Time]]</code> المعطى. | |||
==أمثلة== | ==أمثلة== | ||
سطر 13: | سطر 13: | ||
<syntaxhighlight lang="ruby">Time.now.asctime #=> "Wed Apr 9 08:56:03 2003" | <syntaxhighlight lang="ruby">Time.now.asctime #=> "Wed Apr 9 08:56:03 2003" | ||
Time.now.ctime #=> "Wed Apr 9 08:56:03 2003"</syntaxhighlight> | Time.now.ctime #=> "Wed Apr 9 08:56:03 2003"</syntaxhighlight> | ||
==انظر | ==انظر أيضًا== | ||
* التابع <code>[[Ruby/Time/ctime|ctime]]</code>: يُعيد | * التابع <code>[[Ruby/Time/ctime|ctime]]</code>: يُعيد سلسلة نصية أساسية (canonical string) تحوي [[Ruby/Time|توقيت]] الكائن <code>[[Ruby/Time|Time]]</code> الذي استدعي معه. | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/Time.html#method-i-asctime قسم | *[http://ruby-doc.org/core-2.5.1/Time.html#method-i-asctime قسم التابع asctime في الصنف Time في توثيق روبي الرسمي.] |
المراجعة الحالية بتاريخ 13:35، 6 ديسمبر 2018
يُعيد التابع asctime
سلسلة نصية أساسية (canonical string) تحوي توقيت الكائن Time
الذي استدعي معه.
البنية العامة
asctime → string
القيمة المعادة
تعاد سلسلة نصية أساسية تحوي توقيت الكائن Time
المعطى.
أمثلة
مثال على استخدام التابع asctime
:
Time.now.asctime #=> "Wed Apr 9 08:56:03 2003"
Time.now.ctime #=> "Wed Apr 9 08:56:03 2003"