मान लें कि निम्नलिखित हमारा उद्देश्य है -
$employeeDetails = (object) [ 'firstName' => 'John', 'lastName' => 'Doe', 'countryName' => 'US' ];
हम निम्नलिखित आउटपुट चाहते हैं यानी केवल कुंजियाँ -
firstName lastName countryName
किसी ऑब्जेक्ट से केवल कुंजियाँ प्रदर्शित करने के लिए, PHP में array_keys() का उपयोग करें।
उदाहरण
<!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