View Single Post
ישן 10-01-09, 17:49   # 4
vadimg88
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Feb 2008
גיל: 37
הודעות: 710

vadimg88 לא מחובר  

זה תלוי איך אתה מסתכל על זה. לדעתי זה חשוב שבנאדם יהיה לו איזשהי הסמכה ותעודה במה שהוא עושה. יכול להיות שרק אני אבל לי זה דווקא נתן הרגשה יותר טובה כשעברתי את הבחינה. ואין הרבה הבדל בין חול לכאן בשניהם אתה מוערך על פי הידע והניסיון שלך.

שון אחד הדברים שצריך לזכור זה שכל בחינה היא שונה מה שבטוח שמה שהיה לי לא יהיה לך. אבל הנה כמה שאלות מהבחינה:

What three special methods can be used to perform special logic in the event a
particular accessed method or member variable is not found?
תשובה:
ציטוט:

__get($name)
__set($set, $val)

__call($method, $args)
____ and ___ are called when accessing or assigning an undefined object property, while ___ is executed when calling a non-existent method of a class.

תשובה:
ציטוט:
__get() and __set() are called when accessing or assigning an undefined object property, while __call() is executed when calling a non-existent method of a class.
*Name three new extensions in PHP 5
תשובה:
ציטוט:
SimpleXML,PDO, tidy, MySQLi, sqlite, soap
*The method used to create a new node to be added into an XML document using DOM is the ________ method

תשובה:

ציטוט:
DOMDocument->createElement()

* The _____ function is used to convert an array into a string, maintaining your ability to return the string into an array

תשובה:

ציטוט:
implode()
  Reply With Quote