结构(记录)

<?php

//In PHP there are no structures      
class BoldLine {
    const lineWidth = 10;
}

$width = BoldLine::lineWidth;
//width is 10
echo $width;