Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ปุ่มพิมพ์ PHP จากวัตถุ?


สมมติว่าต่อไปนี้เป็นวัตถุของเรา −

$employeeDetails = (object) [
    'firstName' => 'John',
    'lastName' => 'Doe',
    'countryName' => 'US'
];

เราต้องการผลลัพธ์ต่อไปนี้ เช่น เฉพาะคีย์ -

firstName
lastName
countryName

หากต้องการแสดงเฉพาะคีย์จากอ็อบเจ็กต์ ให้ใช้ array_keys() ใน PHP

ตัวอย่าง

<!DOCTYPE html>
<html>
<body>
<?php
$employeeDetails = (object) [
   'firstName' => 'John',
   'lastName' => 'Doe',
   'countryName' => 'US'
];
$allKeysOfEmployee = array_keys((array)$employeeDetails);
echo "All Keys are as follows=","<br>";
foreach($allKeysOfEmployee as &$tempKey)
echo $tempKey,"<br>";
?>
</body>
</html>

ผลลัพธ์

All Keys are as follows=
firstName
lastName
countryName