我是OOP PHP概念的新手,只有几个月的学习PHP,我在某些方面仍然很慢,所以我只能这么做。
我决定编写我的第一个真正的OOP编程应用程序,它基本上是一个简单的照相馆,它从文件目录中获取图像,并显示每个文件目录中通过basename函数生成的标题。< / p>
我正在努力如何保持OOP从文件目录中获取所有图像然后显示它们。我已经开始编写一个生成图像数组的小函数,但感觉这可能是一种更好,更少程序化的方法。
我的代码现已完成一半所以请善待:)
非常感谢
<?php
class Image{
//list of properties
//image filepath gets pasted in $imageFilepath
public $imageFilepath = "";
public $imageTitle;
public $imageSize;
public function __construct() {
echo 'Welcome to Dannys awesome Gallery';
}
public function getimage_Filepath() {
$image_files = get_files($imageFilepath);
if (count($image_files)) {
$index = 0;
foreach($image_files as $index=>$file)
$index++;
}
}
public function setimage_Filepath() {
}
public function getimage_title($imageTitle) {
//gets the image title using basename
$imageTitle = $imageFilepath;
basename($imageTitle);
}
public function setimage_title($imageTitle) {
//displays the image title
$this->imageTitle;
}
}
$image = new Image;
?>