Rumah > Artikel > pembangunan bahagian belakang > Fungsi dalam PHP
Dalam PHP, banyak fungsi digunakan seperti fungsi terbina dalam dan fungsi yang ditentukan pengguna. Setiap fungsi mempunyai fungsi dan sifat tersendiri. Fungsi ialah satu set pernyataan yang ditulis dalam atur cara yang boleh digunakan beberapa kali dalam kod di mana-mana sahaja yang diperlukan. Panggilan fungsi diperlukan untuk melaksanakan pernyataan yang ditulis di dalam fungsi. Ia adalah sekeping kod yang mengambil satu atau lebih input sebagai parameter dan memprosesnya serta mengembalikan nilai. Pengaturcara hanya perlu mencipta fungsi dan kemudian memanggil fungsi itu dalam atur cara di mana sahaja diperlukan.
IKLAN Kursus Popular dalam kategori ini PEMBANGUN PHP - Pengkhususan | 8 Siri Kursus | 3 Ujian Olok-olokMulakan Kursus Pembangunan Perisian Percuma Anda
Pembangunan web, bahasa pengaturcaraan, ujian perisian & lain-lain
Dalam PHP, terutamanya dua fungsi digunakan oleh pengaturcara. Mereka ialah:
Fungsi ini digunakan apabila pembangun atau pengaturcara perlu melaksanakan logik kod mereka sendiri. Fungsi ini ditakrifkan menggunakan fungsi kata kunci dan di dalam fungsi, satu set pernyataan akan ditulis untuk melaksanakannya apabila panggilan fungsi berlaku. Panggilan fungsi boleh dibuat dengan hanya memanggil fungsi seperti functionname(), dan fungsi itu akan dilaksanakan.
Fungsi ini memberikan kami fungsi perpustakaan terbina dalam. PHP menyediakan fungsi ini dalam pakej pemasangan itu sendiri yang menjadikan bahasa ini lebih berkuasa dan berguna. Untuk menggunakan sifat-sifat fungsi tersebut, kita hanya perlu memanggil fungsi tersebut di mana-mana yang diperlukan untuk mendapatkan hasil yang diingini.
Terdapat banyak fungsi terbina dalam yang digunakan dalam PHP seperti Tarikh, Angka, Rentetan, dll.
Di bawah adalah perkara yang menerangkan mengapa kita perlu menggunakan fungsi dalam php:
Seperti yang kita bincangkan sebelum ini, dalam PHP kita mempunyai dua fungsi iaitu terbina dalam dan ditentukan pengguna. Mari kita fahami lebih lanjut tentang fungsi ini:
Untuk Fungsi Rentetan
Kod:
<!DOCTYPE html> <html> <body> <?php print_r(str_split("Hi This is a test sample")); ?> </body> </html>
Output:
Penjelasan untuk atur cara di atas: Dalam contoh di atas, rentetan yang kami hantar di dalam fungsi str_split(), membahagikan rentetan kepada satu aksara dan menghasilkan output.
Kod:
<!DOCTYPE html> <html> <body> <?php echo strcmp("Hi this is test","Hi this is test"); ?> <p>If this function returns 0, the two strings are same.</p> </body> </html>
Output:
Penjelasan untuk atur cara di atas: Dalam contoh di atas, fungsi strcmp () akan membandingkan rentetan dan jika rentetan adalah sama ia akan mengembalikan sifar dan jika rentetan tidak sama maka ia akan mengembalikan beberapa nombor lain.
Kod:
<!DOCTYPE html> <html> <body> <?php echo strpos("I love coding, I love php too!","coding"); ?> </body> </html>
Output:
The explanation for the above program: This function strpos() will check the position of the string that is passed as a parameter.
Code:
<!DOCTYPE html> <html> <body> <?php echo strrev("Hi world!"); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the function strrev() will reverse the string passed as a parameter and provides the desired output.
Code:
<!DOCTYPE html> <html> <body> <?php echo str_word_count("Hello this is the new world!"); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the str_word_count() function will count the number of strings passed as a parameter and provides the desired output.
Code:
<!DOCTYPE html> <html> <body> <?php echo strlen("Hello this is the test sample!"); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the strlen() function will count the number of characters present in the string and provides the count as the desired output.
For Numeric Functions
Code:
<!DOCTYPE html> <html> <body> <?php echo(abs(5.8) . "<br>"); echo(abs(-5.8) . "<br>"); echo(abs(-2) . "<br>"); echo(abs(3)); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the numeric function abs() will provide us the absolute value of the number that is passed as a parameter to the function.
Code:
<!DOCTYPE html> <html> <body> <?php echo(round(0.65) . "<br>"); echo(round(0.75) . "<br>"); echo(round(0.30) . "<br>"); ?> </body> </html>
Output:
Code:
<!DOCTYPE html> <html> <body> <?php echo(sqrt(0) . "<br>"); echo(sqrt(7) . "<br>"); echo(sqrt(2) . "<br>"); echo(sqrt(0.45) . "<br>"); echo(sqrt(-3)); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the parameters passed to the function sqrt() fetches the result by calculating the square root of the number and produces the desired output.
Code:
<!DOCTYPE html> <html> <body> <?php // Check if the type of a variable is integer or not $x = 456; var_dump(is_int($x)); echo "<br>"; // Check whether the type of variable is integer or not $x = 66.58; var_dump(is_int($x)); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the var_dump() function will check the data type of a particular number passed as a parameter. In the above screenshot, the output is printed as true or false in the condition that the number should be an integer. If the number is not an integer it will return false else true.
Code:
<!DOCTYPE html> <html> <body> <?php // Invalid calculation will return a NaN value $x = acos(10); var_dump($x); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the function var_dump() will check the datatype of the number passed as a parameter. In this example, the function acos() cannot calculate the number specified as a parameter and hence produces the output NAN which means that the calculation is incorrect.
Code:
<!DOCTYPE html> <html> <body> <?php $x = 11.35; var_dump(is_float($x)); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the function is_float() will check whether the number passed as a parameter is of float datatype. This function always returns a Boolean value. If the result is positive then it will return true and if the result is negative it will return false.
For User-defined functions
Code:
<!DOCTYPE html> <html> <body> <?php function Writefunction() { echo "Hello world!"; } Writefunction(); ?> </body> </html>
Output:
Code:
<!DOCTYPE html> <html> <body> <?php function employee($ename) { echo "$ename Patil.<br>"; } employee("Akshay"); employee("Leela"); employee("Sharda"); employee("Subhadra"); employee("Akash"); ?> </body> </html>
Output:
Code:
<!DOCTYPE html> <html> <body> <?php function Employee($ename, $id) { echo "employee name is $ename. Employee id is $id <br>"; } Employee("Heetal","778456"); Employee("Clark","567890"); Employee("Mohit","567894"); ?> </body> </html>
Output:
The explanation for the above program: In the above example, the employee names along with the employee id’s can be displayed by just calling the function employee () where the user wants to print the employee details. This user-defined functions can be used when the organization has a huge data and has to print all the employee details all together at a single go.
Code:
<?php function addNumbers(int $a, int $b) { return $a + $b; } echo addNumbers(5, "13 days"); // since strict is NOT enabled "5 days" is changed to int(5), and it will return 10 ?>
Output:
Penjelasan untuk atur cara di atas: Dalam contoh di atas, kita telah melihat bahawa fungsi yang ditentukan pengguna mempunyai sifatnya sendiri dan juga pengguna boleh memberikan inputnya sendiri untuk mendapatkan output yang diingini. Fungsi yang ditentukan pengguna digunakan oleh pengaturcara atau pembangun untuk membuat perubahan sendiri dalam kod dan bukannya menggunakan fungsi terbina dalam. Motif utama menggunakan jenis fungsi ini ialah pembangun boleh membuat logiknya sendiri seperti pengiraan luas bulatan, ukuran ketinggian, butiran pekerja, dll. PHP telah menaip bahasa yang longgar di mana jenis data tidak ditetapkan dengan cara yang ketat , kita boleh menambah nilai jenis data integer dan rentetan untuk mengambil output. Dalam contoh di atas integer dan rentetan "5 dan 13" ditambah bersama dan output diambil sebagai 18. Ciri ini memberi kelebihan kepada pengguna.
Dalam artikel ini, kami membincangkan jenis fungsi dalam PHP dan juga ciri-cirinya. Pembangun dan pengaturcara cuba membangunkan kod menggunakan kedua-dua fungsi ini kerana mereka tidak perlu menulisnya semula dan juga kod itu mudah diuji kerana ia ditulis berdasarkan jenis tugas yang perlu dilakukannya.
Atas ialah kandungan terperinci Fungsi dalam PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!