Files
journal/vendor/chinadoi/include/ArrayList.class.php
wangjinlei a9bdce100c 20220406
2022-04-06 18:24:31 +08:00

87 lines
1.7 KiB
PHP
Raw Blame History

<?php
/*
* @author:administrator
* @createTime:2016-07-03
*/
class ArrayList
{
public $length;
public $name;
public $my_array;
function __construct()
{
$this->my_array=Array();
}
public function Add($element)
{
array_push($this->my_array, $element);
}
public function get_Length()
{
$this->length=count($this->my_array);
return $this->length;
}
public function get($key)
{
if(array_key_exists($key, $this->my_array))
{
echo $this->my_array[$key];
}
else
{
echo "û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><EFBFBD>";
}
}
public function list_array()
{
foreach ($this->my_array as $value)
{
echo $value;
echo "<br/>";
}
}
public function Delete($key)
{
if(array_key_exists($key, $this->my_array))
{
$this->my_array[$key]=null;
}
else
{
echo "û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԫ<EFBFBD><EFBFBD>";
}
}
public function erase_number()
{
$pattern="/[0-9]/";
foreach ($this->my_array as $value)
{
if(eregi($pattern, $value))
{
$value="";
}
}
foreach ($this->my_array as $value)
{
echo $value;
echo"<br/>";
}
}
public function erase_char()
{
$pattern='/a-zA-Z/';
for($i=0;$i<count($this->my_array)-1;$i++)
{
if(eregi($pattern, $this->my_array[$i]))
{
$this->my_array[$i]=null;
}
}
foreach ($this->my_array as $value)
{
echo $value;
echo "<br/>";
}
}
}