|
imagedashedline(PHP 4, PHP 5) imagedashedline — Draw a dashed line Описание
bool imagedashedline
( resource $image
, int $x1
, int $y1
, int $x2
, int $y2
, int $color
)
This function is deprecated. Use combination of imagesetstyle() and imageline() instead. Список параметров
Возвращаемые значенияAlways returns true Примеры
Пример #1 imagedashedline() example
<?php Результатом выполнения данного примера будет что-то подобное: Пример #2 Alternative to imagedashedline()
<?php |
|