Saturday, September 28, 2024
Google search engine
HomeLanguagesArrayObject ksort() Function in PHP

ArrayObject ksort() Function in PHP

The ksort() function of the ArrayObject class in PHP is used to sort the elements of the ArrayObject according to the keys. This function does not affects the association of the keys with the values, it just sorts the entries of the ArrayObject according to the Keys.

Syntax:

void ksort() 

Parameters: This function does not accepts any parameters.

Return Value: This function does not returns any value.

Below programs illustrate the above function:

Program 1:




<?php
// PHP program to illustrate the
// ksort() function
  
$arr = array("b" => "neveropen", "c" => "are", "a" => "awesome");
  
// Create array object
$arrObject = new ArrayObject($arr);
  
// Sort the ArrayObject according to keys
$arrObject->ksort();
  
// Print the sorted ArrayObject
print_r($arrObject);
  
?>


Output:

ArrayObject Object
(
    [storage:ArrayObject:private] => Array
        (
            [a] => awesome
            [b] => neveropen
             => are
        )

)

Program 2:




<?php
// PHP program to illustrate the
// ksort() function
  
$arr = array("45" => "neveropen", "92" => "are", "10" => "awesome");
  
// Create array object
$arrObject = new ArrayObject($arr);
  
// Sort the ArrayObject
$arrObject->ksort();
  
// Print the ArrayObject
print_r($arrObject);
  
?>


Output:

ArrayObject Object
(
    [storage:ArrayObject:private] => Array
        (
            [10] => awesome
            [45] => neveropen
            [92] => are
        )

)

Reference: http://php.net/manual/en/arrayobject.ksort.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments