Soalan Temuduga PHP untuk Yang Berpengalaman

PHPz
Lepaskan: 2024-08-29 13:14:57
asal
628 orang telah melayarinya

Vous vous souvenez peut-être tous que le marché du développement Internet est en pleine croissance, en particulier les programmeurs d'applications Web qui sont les premiers bénéficiaires de cette croissance. Par conséquent, la plupart d’entre eux ont tendance à découvrir des technologies telles que PHP, HTML/CSS, JavaScript, AngularJS et NodeJS. Les développeurs PHP sont toujours très demandés pour le développement d'applications Web en ligne. Et il existe de nombreux sites Web d'entreprise haut de gamme créés par PHP.

Commencez votre cours de développement de logiciels libres

Développement Web, langages de programmation, tests de logiciels et autres

Donc, si vous avez enfin trouvé l'emploi de vos rêves en PHP mais que vous vous demandez comment réussir l'entretien PHP et quelles pourraient être les probables questions d'entretien PHP 2023, chaque entretien est différent, et la portée du poste est également différente. En gardant cela à l'esprit, nous avons conçu les questions et réponses d'entretien PHP les plus courantes pour vous aider à réussir votre entretien.

Vous trouverez ci-dessous les 10 questions et réponses importantes pour l'entretien PHP 2023 fréquemment posées lors d'un entretien. Ces questions sont divisées en deux parties comme suit :

Partie 1 – Questions d'entretien PHP (de base)

Cette première partie couvre les questions et réponses de base de l'entretien PHP :

Q1. Comparez PHP et Java.

Réponse :

Criteria PHP Java
Deployment area Server-side scripting General-purpose programming
Language type Dynamic typed Static typed
Rich set of APIs No Yes
Critères PHP Java Zone de déploiement Scripts côté serveur Programmation générale Type de langue Saisie dynamique Tapé statique Riche ensemble d'API Non Oui

Q2. What Are PHP Traits?

Answer:

These are the common PHP Interview Questions asked in an interview. It is a mechanism that enables us to try and do code reusability in a single inheritance language, such as PHP. Its structure is similar to that of PHP code, simply that it’s a bunch of reusable functions. Despite having the same name, they all have separate declarations resulting in code duplicity. We will make PHP Traits by clustering these functions. The class will use this attribute to incorporate the tasks outlined in it.

Q3. Why do we tend to Use Extract() In PHP?

Answer:

The extract() imports variables from an array into the local symbol table. It uses variable names as array keys and variable values as array values. for every component of an array, it creates a variable within the same symbol table.

Following is the syntax.

extract(array,extract_rules,prefix)
Salin selepas log masuk

Q4. What are the most common errors in PHP?

Answer:

The most common types of runtime errors in PHP are as follows:

a. Notices: By default, these errors don’t seem to be flaunted to the user the least bit – though you’ll be able to modify this default behavior. These include non-critical trivial errors.

For example, accessing a variable that has not yet been outlined

b. Warnings: By default, these errors are visible to the user; however, they do not lead to script termination. These include a lot of serious errors.

For example, attempting to include () a file that does not exist

c. Fatal Errors: These errors immediately cause the script’s termination, and PHP’s default behavior is showing them to the user. These include critical errors

For example, instantiating an object of a non-existent class.

Q5. What Is PDO in PHP?

Answer:

PDO stands for .

It is a group of PHP extensions that give a core PDO class and database-specific drivers. It provides a vendor-neutral, lightweight, data-access abstraction layer. Thus, despite what database we use, the function to issue queries and fetch data will be the same.
It focuses on data access abstraction rather than database abstraction. PDO needs familiarised options within the core of PHP 5. Therefore, it’ll not run with earlier versions of PHP.

PDO divides into two components.

  • The core that provides the interface.
  • Drivers to access explicit drivers.

Part 2 – PHP Interview Questions (Advanced)

Let us now have a look at the advanced PHP Interview Questions.

Q6. How do you get the information about the uploaded file in the receiving script?

Answer:

Once the web application server receives the file after uploading, it calls the PHP script to process it. This receiving PHP script will get the data of the uploaded file exploitation of the predefined array known as $_FILES. PHP arranges this data in $_FILES as a two-dimensional array.

We will retrieve it as follows:

  • $_FILES[$fieldName][‘name’]: It represents the file name on the browser system.
  • $_FILES[$fieldName][‘size’]: It represents the scale of the go in bytes.
  • $_FILES[$fieldName][‘tmp_name’]: It offers the temporary computer file name that the uploaded file got hold of on the server.
  • $_FILES[$fieldName][‘error’]: It returns the error code related to this file transfer.

The $fieldName is that the name utilized in the ”>

Q7. What’s the distinction between Split And Explode functions for string manipulation in PHP?

Answer:

Both of them perform the task of extracting a String. However, the tactic they use is entirely different. The split() function splits the string into an array employing a regular expression and returns an array.

For Example:

split(:May:June: July);

Returns an array that contains May, June, July.

The explode() function splits the String using a String delimiter.

For Example:

explode (and May and June and July);

It also returns an array that contains May, June, July.

Q8. Define PEAR in PHP.

Answer:

PEAR stands for “PHP Extension and Application Repository.” PEAR is the next revolution in PHP. PEAR is used to install “packages automatically”, and PEAR could be a framework and distribution system for reusable PHP components.

The purpose of PEAR is to provide:

  • Für PHP-Benutzer handelt es sich um eine strukturierte Bibliothek mit Open-Source-Code.
  • Es handelt sich um ein System zur Codeverteilung und Paketwartung.
  • PHP Foundation-Kategorien (PFC).
  • PHP Extension Community Library (PECL).

F9. Welche Bibliothek wird für PDF in PHP verwendet?

Antwort:

Dies sind die beliebtesten PHP-Interviewfragen, die in einem Vorstellungsgespräch gestellt werden. Die PDF-Funktionen in PHP erzeugen PDF-Dateien unter Nutzung der PDFlib-Bibliothek Version 6. PDFlib bietet eine objektorientierte API für PHP 5 und eine funktionsorientierte API für PHP 4. Außerdem gibt es das Modul „Panda“. FPDF ist eine PHP-Klasse, die das Generieren von PDF-Dateien mit reinem PHP ermöglicht (ohne die PDFlib-Bibliothek zu verwenden). F von FPDF steht für Free: Sie können es für jede beliebige Verwendung verwenden und es an Ihre Bedürfnisse anpassen. FPDF benötigt keine Erweiterung, um mit PHP4 und PHP5 zu funktionieren.

F10. Wie verhindern Sie, dass über PHP versendete E-Mails im Spam-Ordner landen?

Antwort:

Es gibt keine bestimmte Methode, um zu verhindern, dass Ihre E-Mails als Spam erkannt werden. Aber wir werden einige Punkte betrachten, die diesen Nachteil verursachen.

Lassen Sie mich einige häufige Gründe erläutern.

1. Senden von E-Mails mit der Funktion „Mail“ mit minimalen Parametern.

Um diesen Fall zu vermeiden, sollten wir alle potenziellen E-Mail-Header wie „MIME-Version“, „Inhaltstyp“, „Antwortadresse“, „Absenderadresse“ usw. verwenden.

2. Kein korrektes SMTP-Mail-Skript wie PHP-Mailer oder SwiftMailer mit den tatsächlichen E-Mail-Anmeldeinformationen von Associate in Nursing und dem Benutzernamen, Passwort usw. verwenden.

Wenn wir dazu neigen, E-Mails von einem tatsächlichen E-Mail-Konto aus über ein SMTP-Mailer-Skript mit einem Benutzernamen und einem Passwort zu versenden, werden wir dies vermeiden
Wenn Sie sich auf einem gemeinsam genutzten Webserver befinden, sollten Sie den Kauf einer eindeutigen IP-Adresse für sich selbst in Betracht ziehen; Dies kann dazu führen, dass andere, die Ihre IP-Adresse verwenden, Ihre IP-Adresse wegen Spam auf die Sperrliste gesetzt haben. Senden Sie nicht mehr als 250 E-Mails pro Stunde an jeden Lieferanten.

Geben Sie Ihren Benutzern einen Abmeldelink. Wenn sie die E-Mail nicht sehen können, werden sie Sie korrekterweise als Spam markieren.

Atas ialah kandungan terperinci Soalan Temuduga PHP untuk Yang Berpengalaman. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Label berkaitan:
php
sumber:php
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan
Tentang kita Penafian Sitemap
Laman web PHP Cina:Latihan PHP dalam talian kebajikan awam,Bantu pelajar PHP berkembang dengan cepat!