10 lines
232 B
PHP
10 lines
232 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$object_form_set = array (
|
|
'cube' => 'घनक्षेत्र',
|
|
'cuboid' => 'घनाभ',
|
|
'sphere' => 'गोला',
|
|
'cone' => 'कोन',
|
|
'cylinder' => 'सिलेंडर',
|
|
);
|