function Random::object
Same name in this branch
- 11.x core/tests/Drupal/TestTools/Random.php \Drupal\TestTools\Random::object()
Same name in other branches
- 9 core/lib/Drupal/Component/Utility/Random.php \Drupal\Component\Utility\Random::object()
- 8.9.x core/lib/Drupal/Component/Utility/Random.php \Drupal\Component\Utility\Random::object()
- 10 core/tests/Drupal/TestTools/Random.php \Drupal\TestTools\Random::object()
- 10 core/lib/Drupal/Component/Utility/Random.php \Drupal\Component\Utility\Random::object()
Generates a random PHP object.
Parameters
int $size: The number of random keys to add to the object.
Return value
object The generated object, with the specified number of random keys. Each key has a random string value.
File
-
core/
lib/ Drupal/ Component/ Utility/ Random.php, line 221
Class
- Random
- Defines a utility class for creating random data.
Namespace
Drupal\Component\UtilityCode
public function object($size = 4) {
$object = new \stdClass();
for ($i = 0; $i < $size; $i++) {
$random_key = $this->name();
$random_value = $this->string();
$object->{$random_key} = $random_value;
}
return $object;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.