I have such a function:
function get_title($keyword) {
$titles = array(
'p1' => 'Title 1',
'p2' => 'Title 2',
// ... other data
'pm' => 'Some other title',
'pn' => 'One more title'
);
return $titles[$keyword];
}
Is it good practice to keep such an array in local variable? For example it has about 50 titles. So every time I call this function - script loads 50 titles?
I'm thinking about using global but isn't global a bad practice?
I'm novice in PHP, early I've written in JS. In JS I can do this with closures:
var get_title = function() {
var titles = {
'p1': 'Title 1',
'p2': 'Title 2',
// ... other data
'pm': 'Some other title',
'pn': 'One more title'
}
return function(keyword) {
return titles[keyword];
}
}();
Here, title-array is not global, and it's not loading every time I call the function. But how to do this in PHP?