Friday, January 30, 2026
HomeLanguagesPHP | DsVector jsonSerialize() Function

PHP | Ds\Vector jsonSerialize() Function

The Ds\Vector::jsonSerialize() function is an inbuilt function in PHP which is used to return the element which can be converted to JSON.

Syntax:

mixed public JsonSerializable::jsonSerialize( void )

Parameters: This function does not accepts any parameter.

Return Value: This function returns the values of the vector in the form which can be converted to JSON.

Below programs illustrate the Ds\Vector::jsonSerialize() function in PHP:

Program 1:




<?php
class vector implements JsonSerializable {
    public function __construct(array $arr) {
        $this->array = $arr;
    }
  
    public function jsonSerialize() {
        return $this->array;
    }
}
  
// Declare an array
$arr = [1, 2, 3, 4, 5];
  
echo("Elements after converting to JSON convertible form\n");
  
echo json_encode(new vector($arr), JSON_PRETTY_PRINT);
  
?>


Output:

Elements after converting to JSON convertible form
[
    1,
    2,
    3,
    4,
    5
]

Program 2:




<?php
class vector implements JsonSerializable {
    public function __construct(array $arr) {
        $this->array = $arr;
    }
  
    public function jsonSerialize() {
        return $this->array;
    }
}
  
// Declare an array
$arr = ["neveropen", "for", "neveropen"];
  
echo("Elements after converting to JSON convertible form\n");
  
echo json_encode(new vector($arr), JSON_PRETTY_PRINT);
  
?>


Output:

Elements after converting to JSON convertible form
[
    "neveropen",
    "for",
    "neveropen"
]

Reference: http://php.net/manual/en/ds-vector.jsonserialize.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

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS