Wednesday, July 3, 2024
HomeLanguagesPhpArrayObject 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!

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments